*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative; overflow-x: hidden;
    padding: 24px 16px;
}

/* ── Background Effects ── */
.gl-grid {
    position: fixed; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
}
.gl-orb {
    position: fixed; border-radius: 50%;
    pointer-events: none; z-index: 0;
    filter: blur(1px);
}
.gl-orb-1 {
    width: 600px; height: 600px;
    top: -220px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255,106,0,0.10) 0%, transparent 70%);
}
.gl-orb-2 {
    width: 400px; height: 400px;
    bottom: -120px; right: -80px;
    background: radial-gradient(ellipse, rgba(255,149,0,0.06) 0%, transparent 70%);
}

/* ── Main Wrapper ── */
.gl-wrapper {
    position: relative; z-index: 10;
    width: 100%; max-width: 420px;
    display: flex; flex-direction: column; align-items: center;
}

/* ── Logo Badge ── */
.gl-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 8px 18px 8px 8px;
    margin-bottom: 28px;
    text-decoration: none !important;
    transition: border-color 0.3s;
}
.gl-badge:hover { border-color: rgba(255,106,0,0.3); }
.gl-badge-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gl-badge-icon .material-icons-round { font-size: 18px; color: #fff; }
.gl-badge-name {
    font-size: 14px; font-weight: 800;
    letter-spacing: -0.3px;
    color: rgba(255,255,255,0.7);
}

/* ── Card ── */
.gl-card {
    width: 100%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ── Footer ── */
.gl-footer {
    display: flex; align-items: center; gap: 12px;
    margin-top: 24px;
}
.gl-footer-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.gl-footer-text { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.3px; }

/* ── Form Global Styles ── */
label {
    color: rgba(255,255,255,0.45) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px !important; font-weight: 700 !important;
    letter-spacing: 0.08em; text-transform: uppercase;
}
input[type="email"], input[type="password"], input[type="text"] {
    width: 100% !important;
    height: 46px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 0 16px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="email"]:focus, input[type="password"]:focus, input[type="text"]:focus {
    border-color: rgba(255,106,0,0.5) !important;
    box-shadow: 0 0 0 3px rgba(255,106,0,0.12) !important;
    background: rgba(255,255,255,0.07) !important;
}
input::placeholder { color: rgba(255,255,255,0.18) !important; }
input[type="checkbox"] { accent-color: #ff6a00; }

a { color: #ff6a00 !important; text-decoration: none; }
a:hover { color: #ff9500 !important; text-decoration: underline; }

button[type="submit"] {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #ff6a00, #ff8800) !important;
    color: white !important; border: none !important;
    border-radius: 14px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important; font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255,106,0,0.3) !important;
    transition: opacity 0.15s, transform 0.1s !important;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
button[type="submit"]:hover { opacity: 0.92 !important; }
button[type="submit"]:active { transform: scale(0.98) !important; }

[class*="text-red"] { color: #f87171 !important; }
[class*="text-green"] { color: #34d399 !important; }

/* Material icon helper */
.mi {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
    user-select: none;
    display: inline-block;
}

@media (max-width: 480px) {
    .gl-card { padding: 32px 24px; border-radius: 20px; }
}
