        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: linear-gradient(-45deg, #D9E057, #800080, #C71585, #D9E057);
            background-size: 400% 400%;
            animation: gradientFlow 15s ease infinite;
        }
        
        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .login-container {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            border-top: 5px solid rgba(139, 69, 19, 0.8);
            z-index: 10;
        }
        
        .bank-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(242, 242, 242, 0.7);
        }
        
        .bank-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #800080 0%, #C71585 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
        }
        
        .bank-name {
            font-size: 22px;
            font-weight: 700;
            color: #483D8B;
            letter-spacing: 0.5px;
        }
        
        .bank-tagline {
            font-size: 14px;
            color: #C71585;
            margin-top: 3px;
            font-style: italic;
            font-weight: 500;
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-header h1 {
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 28px;
        }
        
        .login-header p {
            color: #666;
            font-size: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid rgba(221, 221, 221, 0.7);
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s;
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .form-group input:focus {
            border-color: #8B4513;
            outline: none;
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
        }
        
        .btn-login {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #800080 0%, #C71585 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            margin-top: 10px;
            letter-spacing: 0.5px;
        }
        
        .btn-login:hover {
            background: linear-gradient(135deg, #C71585 0%, #800080 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .btn-login:disabled {
            background: rgba(160, 160, 160, 0.7);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .error-message {
            color: #d90000;
            font-size: 14px;
            margin-top: 15px;
            text-align: center;
            display: none;
            padding: 12px;
            background-color: rgba(255, 237, 237, 0.9);
            border-radius: 6px;
            border-left: 4px solid #d90000;
        }
        
        .success-message {
            color: #008a00;
            font-size: 14px;
            margin-top: 15px;
            text-align: center;
            display: none;
            padding: 12px;
            background-color: rgba(240, 255, 240, 0.9);
            border-radius: 6px;
            border-left: 4px solid #008a00;
        }

        
        .footer-links {
            margin-top: 25px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #800080;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: #C71585;
            text-decoration: underline;
        }
        
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -10px;
        }
        
        .security-notice {
            text-align: center;
            margin-top: 20px;
            padding: 12px;
            background-color: rgba(249, 245, 240, 0.9);
            border-radius: 6px;
            font-size: 12px;
            color: #5a3921;
            border-left: 3px solid #800080;
        }
        
        .security-notice i {
            color: #800080;
            margin-right: 5px;
        }
        
        .password-container {
            position: relative;
        }
        
        .toggle-password {
            position: absolute;
            right: 12px;
            top: 14px;
            cursor: pointer;
            color: #888;
        }
        
        .toggle-password:hover {
            color: #800080;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @media (max-width: 480px) {
            .login-container {
                padding: 30px 20px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
            
            .bank-header {
                flex-direction: column;
                text-align: center;
            }
            
            .bank-logo {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .footer-links a {
                width: 100%;
                text-align: center;
                margin-bottom: 8px;
            }
        }