:root {
            --primary-blue: #1b61f3;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --border-color: #e0e0e0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        body {
            background-color: #fff;
            min-height: 100vh;
        }

        .main-container {
            display: flex;
            min-height: 100vh;
        }

        /* Branding Section */
        .left-panel {
            flex: 1.2;
            background: linear-gradient(rgba(0, 38, 175, 0.85), rgba(0, 38, 175, 0.85)), 
                        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 40px;
            text-align: center;
        }

        .brand-box {
            background: white;
            padding: 12px 24px;
            border-radius: 8px;
            margin-bottom: 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .brand-box h1 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin: 0;
            letter-spacing: -0.5px;
        }

        .left-panel p {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Form Section */
        .right-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #fcfcfc;
            padding: 20px;
        }

        .login-card {
            background: white;
            width: 100%;
            max-width: 440px;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        }

        .login-card h2 {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .subtitle {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 32px;
        }

        .input-group {
            margin-bottom: 24px;
        }

        .input-group label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper i.field-icon {
            position: absolute;
            left: 14px;
            color: #aaa;
        }

        .input-wrapper input {
            width: 100%;
            padding: 14px 14px 14px 40px;
            border: 1.5px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .input-wrapper input:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 4px rgba(27, 97, 243, 0.1);
        }

        .toggle-password {
            position: absolute;
            right: 14px;
            cursor: pointer;
            color: #aaa;
            transition: color 0.2s;
        }

        .toggle-password:hover {
            color: var(--primary-blue);
        }

        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            margin-bottom: 28px;
        }

        .options label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            color: var(--text-gray);
        }

        .login-btn {
            width: 100%;
            padding: 16px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.1s, background 0.2s;
        }

        .login-btn:hover {
            background-color: #0d4ed8;
        }

        .login-btn:active {
            transform: scale(0.98);
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 30px 0;
            color: #bbb;
            font-size: 0.85rem;
        }

        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #eee;
        }

        .divider span {
            padding: 0 15px;
        }

        .social-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 30px;
        }

        .social-btn {
            padding: 12px;
            border: 1.5px solid var(--border-color);
            background: white;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.2s;
        }

        .social-btn:hover {
            background-color: #f8f8f8;
            border-color: #ccc;
        }

        .signup-text {
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .signup-text a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-credit {
            margin-top: 40px;
            font-size: 0.8rem;
            color: #999;
        }

        /* Mobile Adjustments */
        @media (max-width: 850px) {
            .main-container {
                flex-direction: column;
            }

            .left-panel {
                padding: 80px 20px;
                flex: none;
                min-height: 250px;
            }

            .right-panel {
                padding: 40px 15px;
                background-color: #fff;
            }

            .login-card {
                box-shadow: none;
                padding: 0;
            }
        }
		
		 #notification {
            position: fixed;
			top: 10px;
            right: 10px;
        }

        .alert {
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade {
            opacity: 0;
            transform: translateY(-20px);
            /* Slides up slightly while fading */
        }
		
		/* Alert Base Styling */
.alert {
    padding: 15px 20px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    position: relative;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease-out forwards;
    transition: opacity 0.5s ease;
}

/* Color Variants */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

/* Alert Info - Blue theme */
.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

/* Optional: Add an icon specifically for Info alerts */
.alert-info::before {
    content: "\f05a"; /* FontAwesome 'circle-info' icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
}

/* Close Button */
.alert-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    color: inherit;
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
}

/* Animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.fade-out {
    opacity: 0 !important;
}

/* Base Icon Setup for all Alerts */
.alert::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 12px;
    font-size: 1.1rem;
    display: inline-block;
    vertical-align: middle;
}

/* Success - Check Circle */
.alert-success::before {
    content: "\f058"; /* fa-circle-check */
    color: #198754;
}

/* Danger - Circle X / Error */
.alert-danger::before {
    content: "\f057"; /* fa-circle-xmark */
    color: #dc3545;
}

/* Warning - Triangle Exclamation */
.alert-warning::before {
    content: "\f071"; /* fa-triangle-exclamation */
    color: #ffc107;
}
