* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.page-form {
  display: flex !important;
  justify-content: center;
  flex-direction: column;
  align-items: center !important;
  height: 100vh;
}

.login-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 520px;
  text-align: center;
  box-sizing: border-box;
}

.logo {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 35px;
}

.logo a {
  color: #fff;
  font-weight: 700;
}

/* .logo img {
  width: 50%;
  height: auto;
  margin-bottom: 90px;
  margin-top: 40px;
}

.logo a {
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
} */

.input-container {
  margin-bottom: 12px;
  text-align: left;
}

.input-container label {
  display: block;
  margin-bottom: 5px;
}

.input-container .input-with-icon {
  position: relative;
}

.input-container .input-with-icon input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  padding-left: 40px;
  /* Space for icon */
}

.input-container .input-with-icon img,
.input-container .input-with-icon .icon-input {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  height: 20px;
  width: 24px;
  color: #8F95B2;
}

.input-container .input-with-icon i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #8F95B2;
  cursor: pointer;
  font-size: 24px;
}

.checkbox-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px;
}

.remember-me input {
  margin-right: 5px;
}

.forgot-password {
  text-align: right;
}

.forgot-password-link {
  text-decoration: none;
  color: #7a36b6f0;
}

.submit_form {
  background-color: #7a36b6f0;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit_form:hover {
  background-color: #8d45ccf0;
}

.footer {
  width: 500px;
  margin-top: 30px;
  margin-bottom: 15px;

}

.footer a {
  color: #ffffff7e;
  font-size: 15px;
}

/* Responsive design */
@media (max-width: 600px) {
  .login-box {
    padding: 15px;
  }

  .input-container input {
    padding: 8px;
  }

  .submit_form {
    padding: 8px 16px;
  }

  .footer {
    width: 350px;
    margin-top: 30px;

  }

  .footer a {
    color: #ffffff7e;
    font-size: 13px;
  }


}

/* opt page */
.otp-input-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.otp-input {
  width: 77px;
  /* width: 20%; */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  height: 77px;
}

.check-register .remember-me {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

/* Google & Apple button styling */

.login_option {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.login_option .option {
  /* width: calc(100% / 2 - 12px); */
  width: 100%;
}

.login_option .option a {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #F8F8FB;
  border: 1px solid #DADAF2;
  border-radius: 5px;
  margin: 5px 0 5px 0;
  text-decoration: none;
  color: #171645;
  font-weight: 500;
  transition: 0.2s ease;
}

/* .login_option .option a:hover {
  background: #ededf5;
  border-color: #4e68a1;
} */

.login_option .option a img {
  max-width: 25px;
}

.login-box p {
  text-align: center;
  font-weight: 500;
}

.login-box .separator {
  position: relative;
  margin-bottom: 0;
}

.login-box .separator span {
  background: #fff;
  z-index: 1;
  padding: 0 10px;
  position: relative;
}

.login-box .separator::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 1px;
  background: #C2C2C2;
  display: block;
}