
.account_signin {
  min-height: 100vh;
  background-image: url('../images/login-deskBg.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.login_wrapper {
  width: 746px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  padding: 80px 200px;
  border-radius: 30px;
  position: relative;
}

/* ---------- Inputs ---------- */
.email-field input,
.password-field input {
  border-radius: 10px;
  padding-left: 36px;
  font-family: var(--font) !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #71846A !important;
}

.email-field input.form-control,
.password-field input.form-control,
.email-field input.form-control:focus,
.password-field input.form-control:focus,
.email-field input.form-control:valid,
.password-field input.form-control:valid {
  background-color: #F2F3EC !important;
  outline: none;
  border: 1px solid #1B3813 !important;
  box-shadow: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #F2F3EC inset !important;
  box-shadow: 0 0 0 1000px #F2F3EC inset !important;
  -webkit-text-fill-color: #71846A !important;
  transition: background-color 5000s ease-in-out 0s;
}

.email-field input::placeholder,
.password-field input::placeholder {
  color: #71846A;
}

.email-field,
.password-field {
  position: relative;
}

.email-field:before {
  content: "";
  position: absolute;
  left: 14px;
  background-image: url("../images/email.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 17px;
  height: 26px;
  bottom: 11px;
}

.password-field:before {
  content: "";
  position: absolute;
  left: 14px;
  background-image: url("../images/lock.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 17px;
  width: 15px;
  bottom: 11px;
}

.show_hide {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* ---------- Logo ---------- */
.login_logo img {
  margin-bottom: 25px;
}

/* ---------- Form base ---------- */
.form-control {
  width: 100%;
  border: none;
  padding: 10px 12px;
  margin-bottom: 15px;
}

.checkbox_btn {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox_btn input {
  margin-right: 8px;
}

/* ---------- Submit button ---------- */
.submit_btn {
  display: grid;
  place-self: center;
  margin-top: 40px;
}

.primary_cta {
  width: 100%;
  border: none;
  border-radius: 52px !important;
  background: #D5FA99;
  color: #1B3813;
  cursor: pointer;
  font-family: var(--font) !important;
  font-weight: 700;
  font-size: 21px;
  padding: 8px 40px;
}

.form-group label.error {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 12px;
  color: #ffb3b3;
}

/* ---------- Forgot password link ---------- */
.form-group a {
  font-family: var(--font) !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #F0F1E9;
  text-decoration: none;
}

.form-control.input-error {
  margin-bottom: 30px;
}

/* ---------- Messages ---------- */
.submit_msg {
  min-height: 24px;
  margin-bottom: 8px;
}

.submit_msg .message {
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
}

.submit_msg .message:empty {
  display: none;
}

.alert-success {
  color: #1B3813 !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 600;
  padding: 8px 12px;
  background-color: #D5FA99;
  border-radius: 8px;
}

.alert-danger {
  color: #1B3813 !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 700;
  padding: 8px 12px;
  background-color: #D5FA99;
  border-radius: 8px;
}

/* ---------- Layout helpers ---------- */
.signin_fields {
  position: relative;
}

.login_page_wrapper {
  width: 100%;
}

.primary_cta .cta_full.reset_btn{
  width: 100% !important;
    border: none !important;
    border-radius: 52px !important;
    background: #D5FA99 !;
    color: #1B3813;
    cursor: pointer;
    font-family: var(--font) !important;
    font-weight: 700;
    font-size: 21px;
    padding: 10px 63px !important;
}
.email-txtii {
  font-family: var(--font) !important;
color: var(--Vibrant-Lime-D5FA99, #D5FA99);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
    text-align: center;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 991px) {
  .login_wrapper {
    width: 600px;
    padding: 60px 80px;
  }
}

@media screen and (max-width: 767px) {
  .login_wrapper {
    width: 360px;
    padding: 50px 30px;
  }
}

@media screen and (max-width: 370px) {
  .login_wrapper {
    width: 320px;
  }
}