/* OpenBasket Dark Theme — Shared */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { min-height: 100vh; background: #08080a; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #fafafa;
}
::selection { background: rgba(255,107,53,0.2); color: #ff6b35; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.container { max-width: 600px; margin: 0 auto; padding: 60px 24px; }
header { text-align: center; margin-bottom: 48px; }
.back {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.7;
    transition: opacity 0.15s;
}
.back:hover { opacity: 1; }
h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.subtitle { color: rgba(255,255,255,0.45); font-size: 16px; font-weight: 300; }
.card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
}
label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,0.7); }
input, select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.15s;
    background: rgba(255,255,255,0.03);
    color: #fafafa;
    font-family: inherit;
    margin-bottom: 16px;
}
input:focus, select:focus { border-color: rgba(255,107,53,0.5); }
input::placeholder { color: rgba(255,255,255,0.25); }
.btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    font-family: inherit;
}
.btn:hover { background: #ff8555; transform: translateY(-1px); }
.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fafafa; }
.error {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    border: 1px solid rgba(239,68,68,0.2);
}
.info {
    background: rgba(255,107,53,0.06);
    color: rgba(255,255,255,0.7);
    padding: 14px;
    border-radius: 10px;
    margin-top: 16px;
    font-size: 13px;
    border: 1px solid rgba(255,107,53,0.15);
}
footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    margin: 0 12px;
    transition: color 0.15s;
}
footer a:hover { color: #ff6b35; }
