* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Figtree', sans-serif;
            background: linear-gradient(135deg, #000000, #0b0f1a, #2b3b66);
            
            /*linear-gradient(135deg, #1a1a2e, #16213e, #0f0f1a);*/
            
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            color: #e0e0e0;
        }

        .container {
            max-width: 420px;
            width: 100%;
        }

        .card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            color: #234683;
        }

        h2 {
            font-size: 1.875rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            text-align: center;
            font-size: 0.875rem;
            color: #a0aec0;
            margin-bottom: 2rem;
        }

        label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
        }

        input[type="email"],
        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid #4a5568;
            background: rgba(45, 55, 72, 0.5);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            border-color: #234683;
            box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.3);
        }

        input::placeholder {
            color: #718096;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .checkbox-group a {
            color: #234683;
            text-decoration: none;
        }

        .checkbox-group a:hover {
            color: #c4b5fd;
        }

        button {
            width: 100%;
            padding: 0.875rem;
            background: #234683;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        button:hover {
            background: #264882;
        }

        .biometric-hint {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: #718096;
        }

        .biometric-icon {
            width: 40px;
            height: 40px;
            margin: 0.75rem auto 0;
            color: #234683;
        }

        .footer-text {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: #a0aec0;
        }

        .footer-text a {
            color: #234683;
            text-decoration: none;
        }

        .footer-text a:hover {
            color: #2f4d82;
        }

        .error {
            color: #f87171;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .wallet-error {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 60, 60, 0.12);
            border: 1px solid #ff3c3c;
            color: #ff3c3c;
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        @media (max-width: 480px) {
            .card {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.625rem;
            }
        }