  /* ---------- ROOT : Nu Equb Brand, Clean & Advanced ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* ===== YOUR COLOR PALETTE ===== */
            --green-100: #8EDB67;
            --green-200: #6BCB4A;
            --green-300: #4CAF50;
            --green-400: #2E8B3C;
            
            --yellow-100: #FFF176;
            --yellow-200: #FFE95A;
            --yellow-300: #F4D40D;
            --yellow-400: #F7B91B;
            
            --red-100: #FF5252;
            --red-200: #F0282D;
            --red-300: #D91F26;
            --red-400: #B5161C;

            /* UI Colors */
            --bg-page: #f0f4f8;
            --bg-card: #ffffff;
            --bg-input: #f8fafc;
            --border-light: #dce5ef;
            --border-focus: #0a3d62;
            --text-primary: #1a2a3a;
            --text-secondary: #2c3e50;
            --text-muted: #5a7b93;
            --text-light: #8ba3b9;

            /* Shadows */
            --shadow-card: 0 20px 60px rgba(10, 61, 98, 0.08), 0 8px 24px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 30px 70px rgba(10, 61, 98, 0.10);

            /* Radius */
            --radius: 16px;
            --radius-sm: 10px;

            /* Transitions */
            --transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
            --font: 'Inter', system-ui, -apple-system, sans-serif;
        }

        body {
            font-family: var(--font);
            background: var(--bg-page);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 16px;
            background-image: radial-gradient(circle at 10% 20%, rgba(10, 61, 98, 0.02) 0%, transparent 50%),
                              radial-gradient(circle at 90% 80%, rgba(56, 99, 130, 0.02) 0%, transparent 50%);
        }

        /* Hide Amharic by default */
        .amharic-text {
            display: none;
        }

        /* Show Amharic when lang-am class is on body */
        body.lang-am .amharic-text {
            display: inline;
        }

        body.lang-am .english-text {
            display: none;
        }

        /* ---------- CARD ---------- */
        .login-container {
            width: 100%;
            max-width: 430px;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 40px 36px 32px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: var(--transition);
            position: relative;
        }
        .login-container:hover {
            box-shadow: var(--shadow-hover);
        }

        /* Accent line - Nu Equb style */
        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--green-300), var(--yellow-300), var(--green-300));
            border-radius: var(--radius) var(--radius) 0 0;
            opacity: 0.6;
        }



        /* ---------- LANGUAGE TOGGLE ---------- */
        /*.lang-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-full);
            padding: 2px;
            margin-left: var(--space-sm);
        }

        .lang-toggle button {
            padding: 4px 10px;
            border: none;
            border-radius: var(--radius-full);
            font-size: 0.65rem;
            font-weight: 600;
            background: transparent;
            color: var(--text-muted);
            transition: all var(--transition);
            cursor: pointer;
            font-family: var(--font);
        }

        .lang-toggle button.active {
            background: var(--green-300);
            color: white;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
        }

        .lang-toggle button:hover:not(.active) {
            color: var(--text-primary);
        }
*/

         /* ============================================
           LANGUAGE TOGGLE - CENTERED
           ============================================ */
        .lang-toggle-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 15px 0 20px 0;
        }

        .lang-toggle {
            display: inline-flex;
            background: #f3f4f6;
            border-radius: 50px;
            padding: 4px;
            gap: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lang-toggle button {
            padding: 10px 28px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            background: transparent;
            color: #6b7280;
            min-height: 44px;
            min-width: 44px;
            transition: all 0.3s ease;
            font-family: var(--font);
            touch-action: manipulation;
        }

        .lang-toggle button.active {
            background: #4f46e5;
            color: white;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
        }

        .lang-toggle button:hover:not(.active) {
            background: rgba(79, 70, 229, 0.08);
            color: #4f46e5;
        }

        .lang-toggle button:active {
            transform: scale(0.95);
        }

        /* ---------- HEADER ---------- */

        .login-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .login-header .logo-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 12px;
            background: linear-gradient(135deg, var(--green-300), var(--green-400));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .login-header .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .login-header h1 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .login-header h1 span {
            background: linear-gradient(135deg, var(--green-300), var(--yellow-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .login-header p {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 400;
            margin-top: 4px;
        }


        /*.login-header {
            text-align: center;
            margin-bottom: 28px;
        }
        .login-header .logo-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 12px;
            background: linear-gradient(135deg, var(--green-300), var(--green-400));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        .login-header .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .login-header h1 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }
        .login-header h1 span {
            background: linear-gradient(135deg, var(--green-300), var(--yellow-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .login-header p {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 400;
            margin-top: 4px;
        }*/

        /* ---------- FORM : Minimized, Advanced ---------- */
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 4px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            opacity: 0.7;
        }
        .form-group label .required {
            color: var(--red-300);
            margin-left: 2px;
        }

        .form-group .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--bg-input);
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .form-group .input-wrapper:focus-within {
            border-color: var(--green-300);
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
        }

        .form-group .input-wrapper .input-icon {
            padding: 0 8px 0 14px;
            color: var(--text-light);
            font-size: 14px;
            flex-shrink: 0;
            opacity: 0.6;
        }
        .form-group .input-wrapper input {
            flex: 1;
            padding: 11px 12px 11px 0;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-family: var(--font);
            font-size: 14.5px;
            font-weight: 450;
            outline: none;
            width: 100%;
        }
        .form-group .input-wrapper input::placeholder {
            color: var(--text-light);
            font-weight: 400;
            font-size: 13.5px;
            opacity: 0.6;
        }
        .form-group .input-wrapper .toggle-password {
            padding: 0 14px 0 0;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            font-size: 15px;
            flex-shrink: 0;
            opacity: 0.6;
        }
        .form-group .input-wrapper .toggle-password:hover {
            color: var(--text-primary);
            opacity: 1;
        }

        /* Error state - FIXED */
        .form-group .error-text {
            font-size: 12px;
            color: var(--red-300);
            margin-top: 5px;
            display: none;
            font-weight: 500;
            align-items: center;
            gap: 4px;
        }
        .form-group .error-text i {
            font-size: 12px;
        }
        .form-group.error .input-wrapper {
            border-color: var(--red-300);
            box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.10);
        }
        .form-group.error .error-text {
            display: flex;
        }

        /* Success state */
        .form-group.success .input-wrapper {
            border-color: var(--green-300);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.10);
        }
        .form-group.success .error-text {
            display: none;
        }

        /* ---------- FORGOT PASSWORD ---------- */
        .forgot-password-link {
            text-align: right;
            margin: 4px 0 20px;
        }
        .forgot-password-link a {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
            border-bottom: 1.5px solid transparent;
        }
        .forgot-password-link a:hover {
            color: var(--green-300);
            border-bottom-color: var(--green-300);
        }

        /* ---------- BUTTON : Three-Color Combination ---------- */
        .btn-login {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--green-400), var(--green-300), var(--yellow-300));
            border: none;
            border-radius: var(--radius-sm);
            color: #ffffff;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
            box-shadow: 0 4px 16px rgba(46, 139, 60, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.02em;
            position: relative;
            overflow: hidden;
        }
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(46, 139, 60, 0.35);
            background: linear-gradient(135deg, var(--green-400), var(--green-300), var(--yellow-400));
        }
        .btn-login:active {
            transform: scale(0.97);
        }
        .btn-login:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .btn-login .btn-text i {
            margin-right: 4px;
        }

        /* Spinner */
        .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2.5px solid rgba(255, 255, 255, 0.2);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .btn-login.loading .btn-text {
            display: none;
        }
        .btn-login.loading .spinner {
            display: block;
        }

        /* ---------- FOOTER ---------- */
        .login-footer {
            text-align: center;
            margin-top: 22px;
            padding-top: 18px;
            border-top: 1px solid var(--border-light);
        }
        .login-footer p {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 450;
        }
        .login-footer a {
            color: var(--green-300);
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            border-bottom: 1.5px solid transparent;
            padding-bottom: 1px;
        }
        .login-footer a:hover {
            border-bottom-color: var(--green-300);
            color: var(--green-400);
        }

        /* ---------- TOAST - FIXED ---------- */
        .toast-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 3000;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 380px;
            width: 100%;
        }
        .toast {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            animation: slideUp 0.3s ease-out;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .toast.success { 
            border-left: 4px solid var(--green-300); 
        }
        .toast.success i { 
            color: var(--green-300); 
        }
        .toast.error { 
            border-left: 4px solid var(--red-300); 
        }
        .toast.error i { 
            color: var(--red-300); 
        }
        .toast.info { 
            border-left: 4px solid var(--yellow-300); 
        }
        .toast.info i { 
            color: var(--yellow-300); 
        }
        .toast.warning { 
            border-left: 4px solid #f39c12; 
        }
        .toast.warning i { 
            color: #f39c12; 
        }
        .toast-content {
            flex: 1;
        }
        .toast-content h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .toast-content p {
            font-size: 12.5px;
            color: var(--text-muted);
            margin-top: 1px;
            line-height: 1.4;
        }
        .toast .toast-close {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 14px;
            padding: 0 4px;
            transition: var(--transition);
            flex-shrink: 0;
            margin-top: -2px;
        }
        .toast .toast-close:hover {
            color: var(--text-primary);
        }
        .toast.removing {
            opacity: 0;
            transform: translateX(50px);
        }
        @keyframes slideUp {
            from { 
                opacity: 0; 
                transform: translateY(20px) scale(0.96); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        /* ---------- BACK HOME ---------- */
        .back-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 13px;
            transition: var(--transition);
            margin-bottom: 16px;
            text-decoration: none;
        }
        .back-home:hover {
            color: var(--text-primary);
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 460px) {
            .login-container {
                padding: 28px 18px 24px;
            }
            .login-header h1 {
                font-size: 22px;
            }
            .login-header .logo-icon {
                width: 60px;
                height: 60px;
            }
            .btn-login {
                font-size: 14px;
                padding: 13px;
            }
            .toast-container {
                right: 12px;
                bottom: 12px;
                left: 12px;
                max-width: calc(100% - 24px);
            }
            .lang-toggle button {
                padding: 3px 8px;
                font-size: 0.6rem;
            }
        }

        @media (max-width: 360px) {
            .lang-toggle button {
                padding: 2px 6px;
                font-size: 0.5rem;
            }
        }