/*Login Page*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow-x: hidden; */
}


/* login */
.login-container {
  background-color: #fff;
  height: 100vh;
  min-height: auto;
  align-items: center;
  justify-content: center;
}

.logo {
  text-align: center;
}

.login-left {
  padding: 2rem;
}

.login-left span {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #003876;
}

.login-left p {
  color: #58745e;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.form-label {
  color: #2f3d4c;
  font-weight: 600;
  font-size: 1rem;
}

.login-form .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  /* border-color: #9dcbff; */
}

.forget-password-form .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  /* border-color: #9dcbff; */
}

.form-check-input:checked {
  background-color: #003876;
  border-color: #003876;
}

.form-check-label {
  color: #63707f;
  font-weight: 400;
  font-size: 1rem;
}

.forgot-password {
  color: #003876;
  font-weight: 400;
  font-size: 1rem;
}

.btn-login {
  background-color: #003366;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 400;
  font-size: 1rem;
  border: 1px solid #003366;
}

.btn-login:hover {
  background-color: transparent;
  color: #003366;
    border: 1px solid #003366;
}


.btn-signup {
  border: 1px solid #003366;
  background-color: transparent;
  color: #003366;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 400;
  font-size: 1rem;
}

.btn-signup:hover {
  background-color: #003366;
  color: #fff;
}

.login-right {
  background-color: #f5ddcc;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* padding: 2rem; */
  height: -webkit-fill-available;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 70%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #95b29b;
  display: flex;
  align-items: center;
  height: 100%;
}

/*Signup Page*/
.login-left .sign-txt {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003876;
}

/*OTP Verification*/
.otp-container {
  background-color: #000000b2;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.otp-section {
  height: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.otp-section p {
  font-weight: 600;
  font-size: 1.5rem;
  color: #003876;
}

.otp-section span {
  font-weight: 400;
  font-size: 1.125rem;
  color: #636363;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 8px;
  border-color: #9dcbff;
}

.otp-input:focus {
  border-color: #003876;
  box-shadow: 0 0 5px #003876;
}

.btn-verify {
  background-color: #003876;
  color: #fff;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-verify:hover {
  background-color: #003876;
  color: #fff;
}

#resend-txt {
  font-weight: 600;
  font-size: 1.25rem;
  color: #003876;
}

/* Forgot Password */
.otp-section2 {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.otp-section2 p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003876;
}

.otp-section2 span {
  font-size: 1.25rem;
  font-weight: 400;
  color: #636363;
}

/* .forgot-password-form .form-control {
  border-color: #9dcbff;
  padding: 16px;
} */

.back-txt span {
  font-size: 1.25rem;
  font-weight: 400;
  color: #003876;
}

input{
  /* background-color: #fff !important; */
  padding: 1rem !important;
}
input:focus{
  outline: none !important;
  border: 1px solid #003366 !important;
  box-shadow: none !important;
}

.view-details{
    text-decoration: none;
    color: #fff;
    border: 1px solid #003876;
    border-radius: 8px;
    padding: 5px 10px;
    background-color: #003876;
    box-shadow: 0px 4px 50px 0px #00000014;
}
.modal-content{
      width: 90% !important;
    }
    .btn-primary{
    text-decoration: none;
    color: #fff;
    border: 1px solid #003876;
    border-radius: 8px;
    padding: 5px 10px;
    background-color: #003876;
    box-shadow: 0px 4px 50px 0px #00000014;
}