/* CSS file content */

.auth-wrapper .auth-box {
    width: 100%;
    max-width: 443px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);

}


.auth-box h3 {
    font-family: 'inter', sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
    font-weight: 600;
}


.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 0px;
}

.form-group input {
          font-size: 16px;
    padding: 11px 16px !important;
    border: 1px solid #ccc;
    border-radius: 6px;
} 

.form-group .iti--allow-dropdown input[type=tel] {
    padding-left: 83px !important;
    width: 100%;
}





.form-group.checkbox {
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;

}

.form-group input[type="checkbox"] {
    appearance: none;
    background: #fff;
    border: 1px solid rgba(25, 23, 17, .48);
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height:18px;
    width: 18px;
    min-height: 18px;
    min-width: 18px;
    left: 0px;
    margin: inherit;
    padding: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  
}

.form-group input[type="checkbox"]:checked:before {
    background: #000;
    border-radius: 50%;
    content: "";
    display: block;
    height:10px;
    width: 10px;
    min-height: 10px;
    min-width: 10px;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}


.form-group.checkbox label {
    margin-left: 0px;
    padding-left: 26px !important;
}

.open-signup-class {
    margin-top: 23px !important;
}

.btn.primary {
    width: 100%;
    background-color: #004123;
    border: none;
    padding: 10px 12px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}




.link-btn {
    text-align: center;
    /* margin-top: 10px; */
}

.link-btn a {
    text-decoration: none;
}



.link-btn a#open_signup{
   color: #C9001B;
   text-decoration: none;
}


.hidden {
    display: none;
}

.note {
    font-size: 12px;
    color: #777;
}

.login-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;

}

.link-btn {
    font-size: 14px;
    color: #000;


}

.link-btn a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;

}


@media (hover: hover) and (pointer: fine) {
    .link-btn a:hover {
        color: #3a9046;
    }
    .link-btn a:hover {
        text-decoration: underline;
    }
    .btn.primary:hover {
    background-color: #218838;
}
}


@media screen and (min-width: 1000px) {

    .auth-wrapper .auth-box { 
    padding: 32px;
    }
    .form-group label {
        font-size: 16px;
    }

    .link-btn {
        font-size: 15px;


    }

    .auth-wrapper {
        padding: 80px 0;
    }
}


@media screen and (min-width: 1000px) {
.form-group input  {
        font-size: 16px;
        padding: 13px 16px;
    }
}


.wac-custom-login-signup #sign_inMessages {
    margin-top: 10px;
}
.wac-custom-login-signup .messages.success {
    color: green;
}

.wac-custom-login-signup .messages.error {
    color: red;
}