/* =========================================================
   Premium Login Layout - Veera Digital Solutions
   ========================================================= */

body {
    background: #f4f7fb;
}
/* Navbar menu bold + spacing */
.navbar-main .navbar-nav > li > a {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    font-size: 14px;
}
/* Hide default logincontainer styling if any old CSS exists */
.logincontainer {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Main page */
.vds-login-page {
    min-height: calc(100vh - 140px);
    padding: 40px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vds-login-wrapper {
    width: 100%;
    max-width: 1100px;
    min-height: 620px;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

/* Left side */
.vds-login-left {
    width: 50%;
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.70), rgba(15, 23, 42, 0.78)),
                url("/assets/img/login-banner.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.vds-login-left-overlay {
    width: 100%;
    max-width: 420px;
    color: #ffffff;
}

.vds-login-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 30px;
}

.vds-login-left h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 15px;
    color: #ffffff;
}

.vds-login-left p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

.vds-login-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vds-login-features li {
    font-size: 15px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 500;
}

.vds-login-features li i {
    color: #f97316;
    margin-right: 10px;
}

/* Right side */
.vds-login-right {
    width: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.vds-login-card {
    width: 100%;
    max-width: 430px;
}

.vds-login-card .header-lined {
    text-align: left;
    margin-bottom: 25px;
}

.vds-login-card .header-lined h1 {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.vds-login-card .header-lined p {
    color: #64748b;
    font-size: 15px;
}

/* Alerts */
.vds-login-card .alert,
.vds-login-card .providerLinkingFeedback {
    border-radius: 12px;
    margin-bottom: 18px;
}

/* Form */
.vds-login-card .form-group {
    margin-bottom: 18px;
}

.vds-login-card label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.vds-login-card .form-control {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: none;
    font-size: 14px;
    padding: 12px 14px;
    transition: all 0.3s ease;
}

.vds-login-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* Checkbox */
.vds-login-card .checkbox {
    margin: 10px 0 18px;
}

.vds-login-card .checkbox label {
    font-weight: 500;
    color: #475569;
    margin-bottom: 0;
}

/* Buttons */
.vds-login-actions {
    margin-top: 10px;
}

.vds-login-actions .btn {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

.vds-login-actions .btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: #ea580c;
    color: #fff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.24);
}

.vds-login-actions .btn-primary:hover,
.vds-login-actions .btn-primary:focus {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    border-color: #c2410c;
    color: #fff;
}

.vds-forgot-btn {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
}

.vds-forgot-btn:hover,
.vds-forgot-btn:focus {
    background: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

/* Social login area */
.vds-login-card .linked-account-btn,
.vds-login-card .btn-social {
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .vds-login-wrapper {
        flex-direction: column;
        max-width: 620px;
    }

    .vds-login-left,
    .vds-login-right {
        width: 100%;
    }

    .vds-login-left {
        min-height: 300px;
        padding: 35px 30px;
    }

    .vds-login-left h2 {
        font-size: 30px;
    }

    .vds-login-right {
        padding: 35px 25px;
    }
}

@media (max-width: 575px) {
    .vds-login-page {
        padding: 20px 10px;
    }

    .vds-login-wrapper {
        border-radius: 18px;
    }

    .vds-login-left {
        min-height: 250px;
        padding: 28px 22px;
    }

    .vds-login-left h2 {
        font-size: 24px;
    }

    .vds-login-left p {
        font-size: 14px;
    }

    .vds-login-right {
        padding: 25px 18px;
    }

    .vds-login-card .header-lined h1 {
        font-size: 24px;
    }
    
}

