:root{
    --bg:#07060b;
    --panel:#17101f;
    --purple:#8d43c8;
    --purple-light:#c481ef;
    --green:#91d746;
    --green-light:#d6ff8a;
    --orange:#f17b1c;
    --cream:#f7eddf;
    --muted:#c8b9ce;
}

*{box-sizing:border-box}

body{
    margin:0;
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:24px;
    background:
        radial-gradient(circle at top left,rgba(141,67,200,.28),transparent 32%),
        radial-gradient(circle at bottom right,rgba(145,215,70,.14),transparent 28%),
        var(--bg);
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
}

.sx-reset-card{
    width:min(100%,560px);
    padding:34px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    background:rgba(23,16,31,.96);
    box-shadow:0 24px 65px rgba(0,0,0,.38);
}

.sx-brand{
    display:inline-block;
    margin-bottom:18px;
    color:var(--green-light);
    text-decoration:none;
    font-size:25px;
    font-weight:900;
}

.sx-eyebrow{
    display:inline-block;
    margin-bottom:8px;
    color:var(--purple-light);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

h1{
    margin:0 0 10px;
    color:#fff;
    font-size:34px;
}

p{
    color:var(--muted);
    line-height:1.6;
}

label{
    display:block;
    margin:18px 0 7px;
    color:#fff;
    font-weight:800;
}

input{
    width:100%;
    min-height:50px;
    padding:12px 14px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:12px;
    background:#0e0a14;
    color:#fff;
    font-size:16px;
}

input:focus{
    outline:3px solid rgba(141,67,200,.28);
    border-color:var(--purple-light);
}

button{
    width:100%;
    min-height:50px;
    margin-top:20px;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:#15200d;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
}

.sx-alert{
    margin:16px 0;
    padding:13px 15px;
    border-radius:13px;
    line-height:1.5;
}

.sx-alert.error{
    background:#3b161a;
    color:#ffd7da;
    border:1px solid #7d3138;
}

.sx-alert.success{
    background:#17351f;
    color:#dcffe7;
    border:1px solid #38774a;
}

.sx-back{
    display:block;
    margin-top:20px;
    text-align:center;
    color:var(--green-light);
    font-weight:800;
    text-decoration:none;
}

.sx-note{
    margin-top:20px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
    color:var(--muted);
    font-size:13px;
}
