 body {
     font-family: "Mona Sans", sans-serif;

 }

 .login-wrapper {
     min-height: 100vh;
     background: url("../images/main-bg.jpg");
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
 }


 .signin-card {
     max-width: 445px;
     border-radius: 14px;
        border: 1px solid #8d9192;
     background: #FFFFFF;

     box-shadow: 0px 4px 33.8px 0px #0000001A;

 }
 .brand-icon{
     width:170px;
 }

 .brand-icon {
   
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
 }

 .small {
     font-size: 13px;
 }

 .btn-gradient {
    background: linear-gradient(135deg, #1e8a8a, #156b6b, #26b5b5);
     border: none;
 }

 .btn-gradient:hover {
     opacity: 0.95;
 }


 .form-control {
     opacity: 1;
     padding: 12px;
     gap: 8px;
     border-radius: 8px;
     border-width: 1px;

 }

 .form-label {
     font-weight: 500;
     color: #1a1a1a;
 }

 .required {
     font-weight: 700;
     color: #dc3545;
 }

 .btn {
     font-size: 15px;
     font-weight: 500;
     padding: 12px 0px;
 }

.form-control:focus {
    border-color: #1e8a8a !important;
    outline: 0;
    box-shadow: 0 0 0 .15rem rgba(30, 138, 138, 0.15);
}
 input:focus,
 textarea:focus,
 select:focus,
 .select2-selection:focus {
     outline: none;
   border-color: #1e8a8a !important;
    outline: 0;
    box-shadow: 0 0 0 .15rem rgba(30, 138, 138, 0.15);
 }

 input:focus-visible,
 textarea:focus-visible,
 select:focus-visible {
     outline: none;
 }

 /* input::placeholder {
     color: #b0b0b0 !important;

 } */


 .password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 42px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
 
    font-size: 16px;
}

.toggle-password {
    color: #1e8a8a;
}
.toggle-password:hover {
    color: #156b6b;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
   
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* Primary Button Override */
.btn-primary {
    background: linear-gradient(135deg, #1e8a8a 0%, #156b6b 100%) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 138, 138, 0.3) !important;
    background: linear-gradient(135deg, #26b5b5 0%, #1e8a8a 100%) !important;
}

.btn-primary:active,
.btn-primary:focus {
    background: linear-gradient(135deg, #156b6b 0%, #0f5555 100%) !important;
    box-shadow: 0 5px 15px rgba(30, 138, 138, 0.4) !important;
}
