/* Register page - neon / cyberpunk styling */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: radial-gradient(circle at 10% 10%, #16202b 0%, #0b0d12 40%, #060607 100%);
    color: #e6fff3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.register-wrap {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, rgba(20,26,34,0.9), rgba(8,10,12,0.92));
    border: 1px solid rgba(0,255,130,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 40px rgba(0,255,130,0.03) inset;
    border-radius: 14px;
    padding: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.brand .logo {
    width: 46px; height: 46px; border-radius: 10px; background: linear-gradient(135deg,#00ff8a,#00cc6a); box-shadow: 0 6px 18px rgba(0,255,130,0.12);
}
.brand h1 { font-size: 20px; color: #00ff8a; letter-spacing: 0.6px; text-shadow: 0 0 10px rgba(0,255,130,0.08); }

.subtitle { color: #9fdcb4; font-size: 13px; margin-bottom: 18px; }

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    color: #e6fff3;
    transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
}

.auth-input::placeholder { color: rgba(230,255,243,0.45); }

.auth-input:focus {
    outline: none;
    border-color: rgba(0,255,130,0.5);
    box-shadow: 0 6px 24px rgba(0,255,130,0.06);
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg,#ff006f,#5b00ff);
    color: #fff; font-weight: 700; font-size: 15px;
    box-shadow: 0 6px 24px rgba(91,0,255,0.12), 0 0 24px rgba(255,0,111,0.06) inset;
    transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(91,0,255,0.14); }

.btn-ghost {
    background: transparent; color: #9fdcb4; border: 1px solid rgba(159,220,180,0.08); padding: 10px 14px; border-radius: 8px;
}

.msg { padding: 12px 14px; border-radius: 8px; font-weight:600; font-size:14px; }
.msg.error { background: rgba(255,80,80,0.08); color: #ff9a9a; border: 1px solid rgba(255,80,80,0.12); }
.msg.success { background: rgba(0,255,130,0.06); color: #9ff7c9; border: 1px solid rgba(0,255,130,0.12); }

.foot { margin-top: 14px; text-align: center; font-size: 13px; color: #9fdcb4; }
.foot a { color: #00ff8a; text-decoration: none; font-weight:700; }

/* Small devices */
@media (max-width: 480px) {
    .register-wrap { padding: 18px; border-radius: 12px; }
    .brand h1 { font-size: 18px; }
    .btn-primary { font-size: 14px; padding: 10px 14px; }
}

/* Tiny helpers */
.row { display:flex; gap:8px; }
.muted { color: rgba(159,220,180,0.6); font-size:13px; }

/* Accessibility focus visible */
.auth-input:focus-visible { outline: 3px solid rgba(0,255,130,0.08); }

/* End of file */
