*{box-sizing:border-box;margin:0;padding:0;}
html,body{min-height:100vh;font-family:'DM Sans',system-ui,-apple-system,sans-serif;background:#080d1a;}

/* Deep blue radial gradient background like PushX */
.pxt-auth-bg{
    position:fixed;inset:0;z-index:0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(124,58,237,.15) 0%, transparent 60%),
        linear-gradient(160deg,#080d1a 0%,#0a1628 50%,#080d1a 100%);
}

.pxt-auth-wrap{
    position:relative;z-index:1;
    display:flex;align-items:center;justify-content:center;
    min-height:100vh;padding:24px 20px;
}

/* Card - exactly like PushX */
.pxt-auth-card{
    width:100%;max-width:440px;
    background:rgba(17,24,39,.85);
    backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 40px 32px;
    box-shadow:0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
}

/* Brand row at top */
.pxt-auth-brand{display:flex;align-items:center;gap:14px;margin-bottom:32px;}
.pxt-auth-brand-icon{
    width:52px;height:52px;border-radius:14px;flex-shrink:0;
    background:linear-gradient(135deg,#4f46e5,#7c3aed);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 6px 20px rgba(79,70,229,.45);
    font-size:22px;font-weight:700;color:#fff;
}
.pxt-auth-brand-text h2{font-size:20px;font-weight:700;color:#f9fafb;letter-spacing:-.3px;margin-bottom:2px;}
.pxt-auth-brand-text p{font-size:12px;color:#6b7280;font-weight:400;}

.pxt-auth-header{margin-bottom:28px;}
.pxt-auth-header h1{font-size:24px;font-weight:700;color:#f9fafb;letter-spacing:-.4px;margin-bottom:6px;}
.pxt-auth-header p{font-size:13px;color:#6b7280;}

/* Fields */
.pxt-auth-field{margin-bottom:16px;}
.pxt-auth-field label{
    display:block;font-size:11px;font-weight:700;
    color:#6b7280;margin-bottom:7px;
    text-transform:uppercase;letter-spacing:.8px;
}
.pxt-auth-field input{
    width:100%;padding:12px 16px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.07);
    background:rgba(255,255,255,.04);
    color:#f9fafb;font-size:14px;
    font-family:'DM Sans',sans-serif;
    outline:none;
    transition:border-color .15s,box-shadow .15s,background .15s;
}
.pxt-auth-field input:focus{
    border-color:rgba(79,70,229,.6);
    background:rgba(79,70,229,.07);
    box-shadow:0 0 0 3px rgba(79,70,229,.15);
}
.pxt-auth-field input::placeholder{color:#374151;font-size:14px;}

.pxt-auth-error{
    background:rgba(239,68,68,.1);color:#fca5a5;
    padding:10px 14px;border-radius:8px;font-size:13px;
    margin-bottom:16px;border:1px solid rgba(239,68,68,.2);
}

/* Button - full width blue like PushX */
.pxt-auth-btn{
    width:100%;padding:13px 20px;margin-top:4px;
    background:linear-gradient(135deg,#4f46e5,#6366f1);
    color:#fff;border:none;border-radius:10px;
    font-size:15px;font-weight:600;cursor:pointer;
    font-family:'DM Sans',sans-serif;
    letter-spacing:.1px;
    transition:opacity .15s,transform .1s,box-shadow .15s;
    box-shadow:0 4px 18px rgba(79,70,229,.5);
}
.pxt-auth-btn:hover{opacity:.92;transform:translateY(-1px);box-shadow:0 6px 24px rgba(79,70,229,.6);}
.pxt-auth-btn:active{transform:translateY(0);}
.pxt-auth-btn:disabled{opacity:.5;cursor:not-allowed;transform:none;box-shadow:none;}

/* Footer */
.pxt-auth-links{text-align:center;margin-top:20px;display:flex;justify-content:center;gap:20px;}
.pxt-auth-links a{color:#6366f1;font-size:13px;text-decoration:none;font-weight:500;transition:color .15s;}
.pxt-auth-links a:hover{color:#818cf8;}
.pxt-auth-footer{text-align:center;margin-top:16px;font-size:11px;color:#374151;}

@media(max-width:480px){.pxt-auth-card{padding:28px 22px 24px;}}
