/* zpac-login.css */

/*


#zpac-login-form input[type="text"],
#zpac-login-form input[type="password"] {
background-color: var(--e-global-color-2b1fb9e);
    border-color: var(--e-global-color-primary);
    border-width: 3px 3px 3px 3px;
    font-family: "DiurnalL", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    padding: 1rem 1rem;
}

#zpac-login-form button[type="submit"] {
  background-color: #0073aa;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

#zpac-login-form button[type="submit"]:hover {
  background-color: #005177;
}

#zpac-login-message {
  margin-top: 12px;
  font-weight: bold;
}

.extra-login-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-pass {
    cursor: pointer;
    color: #0d3a6e;
    font-weight: bold;
    font-size: 16px;
}

*/
.extra-login-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.lost-pass a {
    font-family: "BrennerSans", Sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: right;
    color: #EF5057!important;
}
.lr-btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 30px;
}
.lr-btn button{
    color: #ffffff;
    font-family: "BrennerSans", Sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: 0.05em;
    font-variant: all-small-caps;
    padding: 20px 25px;
    background:#F5F1EE;
}



.zpac-custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  font-weight: 700;
    font-size: 18px;
    line-height: 22px;

  user-select: none;
}

/* Hide the default checkbox */
.zpac-custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkmark box */
.zpac-checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 3px solid #134272;
  border-radius: 0px;
}

/* On hover */
.zpac-custom-checkbox:hover .zpac-checkmark {
  background-color: #ddd;
}

/* When checked */
.zpac-custom-checkbox input:checked ~ .zpac-checkmark {
  background-color: #0073aa;
  border-color: #0073aa;
}

/* Checkmark icon (using ::after) */
.zpac-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.zpac-custom-checkbox input:checked ~ .zpac-checkmark::after {
  display: block;
}



.zpac-custom-checkbox .zpac-checkmark::after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


/* Container */


#zpac-login-form-container {
  
  margin: 0 auto;
  font-family: "DiurnalL", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

/* Input fields */
#zpac-login-form input[type="text"],
#zpac-login-form input[type="email"],
#zpac-login-form input[type="password"] {
  width: 100%;
  padding: 18px;
  border: 3px solid #134272;
  border-radius: 0;
  background: #F5F1EE;
  font-size: 24px;
    line-height: 32px;
  color: #bdc5ce;
  font-weight: bold;
}

#zpac-login-form input::placeholder {
  color: #b5c0cb;
  font-weight: bold;
}

/* Submit button */
#zpac-login-form button[type="submit"] {
  background-color: #0a3d73;
  color: #F5F1EE;
  padding: 20px;
  border: none;
  font-weight: bold;
    font-weight: 700;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: 0.05em;
    font-variant: all-small-caps;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

#zpac-login-form button[type="submit"]::after {
  content: "→";
  font-size: 18px;
}

/* Checkbox */
.zpac-remember-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.zpac-custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #0a3d73;
}

.zpac-custom-checkbox input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

/* Forgot password link */
#zpac-login-form-container p a {
  font-size: 14px;
  color: #f44336; /* red */
  text-decoration: none;
}

#zpac-login-message {
  margin-top: 16px;
  font-weight: bold;
}

.remember-pass p {
    margin-bottom:0;
}












