#form_container {
  color: #3a3c47;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  margin-top: 50px;
}

h1 {
  margin-top: 48px;
}

form {
  background: #fff;
  max-width: 390px;
  width: 100%;
  padding: 58px 44px;
  border: 1px solid #e1e2f0;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(42, 45, 48, 0.12);
  transition: all 0.3s ease;
}

.row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.row label {
  font-size: 15px;
  color: #8086a9;
}

.row input {
  flex: 1;
  padding: 13px;
  border: 1px solid #d6d8e6;
  border-radius: 2rem;
  font-size: 16px;
  transition: all 0.2s ease-out;
  padding-left: 25px;
}

.row input:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px 0 rgba(42, 45, 48, 0.12);
}

.row input::placeholder {
  color: #C8CDDF;
}

.login,
.recover {
  font-family: 'Poppins';
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background: #1a2e79;
  color: #fff;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.2s ease-out;
}

.login:hover,
.recover:hover {
  background: #1a2e79;
}

.back-login,
.back-login-recover,
.back-login-otp,
.back-login-password {
  cursor: pointer;
  color: red;
  text-decoration: underline;
  float: right;
}

.recover-title {
  padding: 6px 17px;
  margin-bottom: 25px;
}

.otp-num{
  width: 50px;
}

@media(max-width: 458px) {

  body {
    margin: 0 18px;
  }

  form {
    box-shadow: none;
  }

  form input[type="text"],
  form input[type="password"],
  form input[type="email"] {
    max-width: 100%;
  }

}

#logo_company > a> img {
    width: 350px;
}
/* register button */
.btn-primary, .btn-secondary {
  font-family: 'Poppins';
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background: #1a2e79;
  color: #fff;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.2s ease-out;
  max-width: 195px;
}