/* ФИЧА: auth | РОЛЬ: стили для страниц входа и регистрации */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
}

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
}

.auth-card h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #f8fafc;
}

.auth-subtitle {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.auth-error {
    background: #451a2a;
    border: 1px solid #f87171;
    color: #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.auth-success {
    background: #14532d;
    border: 1px solid #4ade80;
    color: #bbf7d0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.375rem;
}

.field input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 0.9375rem;
    transition: border-color 0.15s;
}

.field input:focus {
    outline: none;
    border-color: #60a5fa;
}

.field input::placeholder {
    color: #475569;
}

button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.15s;
}

button[type="submit"]:hover {
    background: #2563eb;
}

.auth-link {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.auth-link a {
    color: #60a5fa;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}
