body {
  background-color: #0a7272a9;
}

.page__heading {
  font-size: 60px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  font-weight: 900;
}

.page__heading a {
  text-decoration: none;
  color: white;
  transition: 0.5s all ease-in-out !important;
}

.page__heading a:hover {
  color: #000000;
  text-decoration: underline;
}

.main-content {
  width: 50%;
  border-radius: 20px;
  border: 1px solid black;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  margin: 5em auto;
  display: flex;
}
.company__info {
  background-color: #008080;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  width: fit-content;
  margin: 0;
  padding: 0;
}

.error {
  background: #f2dede;
  color: #0c0101;
  padding: 10px;
  width: auto;
  border-radius: 5px;
  margin: 20px auto;
}

.company__info img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-right: 2px solid black;
}

@media screen and (max-width: 640px) {
  .main-content {
    width: 90%;
  }
  .company__info {
    display: none;
  }
  .login_form {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
@media screen and (min-width: 642px) and (max-width: 800px) {
  .main-content {
    width: 70%;
  }
}
.row > h2 {
  color: #008080;
}
.login_form {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
form {
  padding: 0 2em;
}
.form_input {
  width: 100%;
  border: 0px solid transparent;
  border-radius: 0;
  border-bottom: 1px solid #aaa;
  padding: 1em 0.5em 0.5em;
  padding-left: 2em;
  outline: none;
  margin: 1.5em auto;
  transition: all 0.5s ease;
}
.form_input:focus {
  border-bottom-color: #008080;
  box-shadow: 0 0 5px rgba(0, 80, 80, 0.4);
  border-radius: 4px;
}
.btn {
  transition: all 0.5s ease;
  width: 70%;
  border-radius: 30px;
  color: #008080;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #008080;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
.btn:hover,
.btn:focus {
  background-color: #008080;
  color: #fff;
}

hr {
  margin: 0%;
}

.footer {
  margin: 0%;
  background-color: #333;
}
