body {
    background: #fff;
    min-height: 100vh;
}
.invalid-feedback{display: block;}
.login-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    //box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}

.social_wrapper a.btn.social-btn img {
    width: 13px;
    margin-right: 5px;
}
.social_wrapper a.btn.social-btn {
    display: inline-block;
    font-size: 13px;
    margin: 0 2px;
}

.social_wrapper a.btn.social-btn p {
    width: 180px;
    display: inherit;
    margin: 0;
    text-align: left;
}
.social_wrapper a.btn.social-btn span {
    display: inherit;
    text-align: left;
    width: 30px;
}

.social_wrapper {
    text-align: center;
}

.login-title {
    font-weight: 600;
    //color: #1f2937;
    color: #212529 !important;
}

.form-switch label{
    font-size: 14px;
}

.social-btn {
    border-radius: 8px;
    font-weight: 500;
}

//.btn-facebook { background: #3b5998; color: white; }
.btn-google ,.btn-facebook , .btn-bankid{ background: white; border:1px solid #ddd; color:#444; }
.btn-google:hover ,.btn-facebook:hover , .btn-bankid:hover{border:1px solid #ddd;background: #e5ecf4;}
//.btn-bankid { background: #111; color:white; }

.facebook-icon,.google-icon,.bank-icon {
    height: 18px;
    margin-right: 8px;
}

.side-image {
    background-image: url('/public/assets/images/auth_images/auth_bg.jpg');
    background-size: cover;
    background-position: center;
}
.separator .border-top {
    border-top: 1px solid #d6dce1 !important;
}

.separator span {
    letter-spacing: 0.5px;
    font-size: 12px;
}
.forgot-link {
    font-size: 14px;
    text-decoration: none;
    color: #0d6efd;
}

.forgot-link:hover {
    text-decoration: underline;
    color: #0b57d0;
}



.auth-logo {
    height: 55px;
}

.back-link {
    color: #0d6efd;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Custom checkbox styling */
.custom-checkbox {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #495057;
}

/* Hide default checkbox */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create custom checkmark */
.custom-checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid #28a745; /* Green border */
    border-radius: 4px;
    background-color: white;
    transition: 0.2s;
}

/* Checkmark when checked */
.custom-checkbox input:checked + label::after {
    content: "\2713"; /* Check symbol */
    position: absolute;
    left: 3px;
    top: -1px;
    font-size: 18px;
    color: #28a745;
}

/* Hover effect */
.custom-checkbox label:hover::before {
    background-color: #e6f4ea; /* subtle green on hover */
}
