.auth-card {
    width: 100%;
    max-width: 420px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    padding: 40px 36px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAB308;
    margin: 0 0 6px 0;
    font-family: 'Inter', sans-serif;
}

.auth-subtitle {
    font-size: 0.875rem;
    color: #d3c5ac;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ece1d1;
    font-family: 'JetBrains Mono', monospace;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #2A2A2A !important;
    border-radius: 8px;
    background: #201b11 !important;
    color: #ece1d1 !important;
    color-scheme: dark;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #9b8f79;
}

.form-input:focus {
    border-color: #EAB308;
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.15);
    background: #241f15;
}

.auth-button {
    width: 100%;
    padding: 11px 0;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #0F0F0F;
    background: #EAB308;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.15s;
    margin-top: 4px;
}

.auth-button:hover {
    filter: brightness(1.1);
}

.auth-footer {
    text-align: center;
    font-size: 0.8125rem;
    color: #d3c5ac;
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
}

.auth-link {
    color: #EAB308;
    font-weight: 600;
    text-decoration: none;
}

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

.form-errors {
    background: rgba(255, 180, 171, 0.08);
    border: 1px solid rgba(255, 180, 171, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.8125rem;
    color: #ffb4ab;
    font-family: 'Inter', sans-serif;
}

.form-errors p {
    margin: 0;
}

.field-error {
    font-size: 0.75rem;
    color: #ffb4ab;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}
