     * {
            box-sizing: border-box;
        }
        html,body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            width: 100%;
        }
        .container {
            width:100%;
            max-width:100%;
            display: flex;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            position: relative;
            margin-right:0px;
            margin:0px;
            padding:0px;
            padding-right:5px;
        }
        .left-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width:680px;
            z-index: -1;
            background: linear-gradient(135deg, rgba(157, 177, 245, 0.7) 10%, rgba(129, 137, 250, 0.58) 90%);
        }
        .left-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/bg.png') no-repeat center/cover;
            opacity: 0.3;
            z-index: -1;
        }
        .left-overlay {
            text-align: center;
            color: white;
            padding: 60px 40px;
            animation: fadeInUp 1s ease-out;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .left-overlay h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 12px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.5px;
        }
        .left-overlay p {
            font-size: 1.2rem;
            opacity: 0.95;
            line-height: 1.5;
        }
      .right-section {
    flex: 1.5;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    width:100%;
    max-width:100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px;     /* ← Increased horizontal padding */
    padding-right:0px;
    max-width: 550px;       /* ← Optional: limit width for better centering */
    margin-right: 0;         /* ← Center the panel */
    margin-left:80px;
    position: relative;
    z-index: 1;
    animation: slideInRight 1s ease-out;
}
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .right-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            z-index: 2;
        }

        .right-section h2 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            text-align: center;
            letter-spacing: -0.3px;
        }
        .right-section p {
            color: #666;
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.05rem;
            font-weight: 300;
        }
        .form-group {
            margin-bottom: 28px;
            position: relative;
        }
        .form-group label {
            display: block;
            font-size: 0.98rem;
            font-weight: 500;
            color: #555;
            margin-bottom: 10px;
            letter-spacing: 0.2px;
        }
        .form-group input {
    width: 100%;                        /* ← Full width of panel */
    padding: 16px 50px 16px 20px;       /* ← Keep padding for icons */
    border: 2px solid #e8ecf4;
    border-radius: 14px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: #fdfdff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width:100%;
}
        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 15px rgba(0, 0, 0, 0.08);
            transform: translateY(-1px);
            background: white;
        }
        .form-group i {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color:rgba(21, 58, 192, 0.5);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            line-height: 1;
        }
        .form-group input:focus + i,
        .form-group i:hover {
            color: #667eea;
            transform: translateY(-50%) scale(1.1);
        }
        .forgot-password {
            display: block;
            text-align: right;
            color: #667eea;
            text-decoration: none;
            font-size: 0.92rem;
            margin-bottom: 24px;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        .forgot-password:hover {
            color: #764ba2;
        }
        .btn-login {
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 14px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            letter-spacing: 0.5px;
        }
        .btn-login::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .btn-login:hover::before {
            left: 100%;
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        .btn-login:active {
            transform: translateY(-1px);
        }
      
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
       
        @media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: 100vh;
        border-radius: 0;
    }
    .left-section {
        height: 30vh;
        flex: none;
    }
    .right-section {
        flex: 1;                        /* ← Full height on mobile */
        padding: 40px 20px;             /* ← Balanced for mobile */
        max-width: none;                /* ← Full screen width */
        margin: 0;                      /* ← No margins */
        align-items: stretch;           /* ← Stretches content full-width */
    }
    .form-group input {
        width: 100%;                    /* ← Full-width on mobile */
        max-width: none;                /* ← No limits */
    }
    .left-overlay h1 {
        font-size: 2rem;
    }
    .left-overlay p {
        font-size: 1rem;
    }
    .right-section h2 {
        font-size: 1.8rem;
    }
}
        .loading {
            display: none;
            text-align: center;
            margin-top: 12px;
        }
        .loading i {
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* ===== Toast Notification (Top Right) ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    min-width: 260px;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    margin-left:50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-out 3s forwards;
    box-shadow: 0px 5px 14px rgba(0,0,0,0.15);
}

/* Success Toast */
.custom-toast.success {
    background: #28a745;
}

/* Error Toast */
.custom-toast.error {
    background: #dc3545;
}
.custom-toast.warning {
    background: #ff9d0aff;
}
/* Animation */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(40px); }
}
.w-40
{
    width:300px;
    margin-bottom:10px;
}