/* auth.css – стили для страниц входа и регистрации (Monochrome & Gold) */

/* Контейнер формы */
.auth-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.auth-card {
    background: #fff;
    border: 1px solid var(--border, #E8E8E8);
    padding: 2rem;
}

.auth-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-header h3 {
    font-family: var(--font-serif, 'PT Serif', Georgia, serif);
    font-weight: 400;
    color: var(--dark, #0B0C10);
    margin: 0;
}

/* Стилизация полей формы (если используются стандартные input) */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form select,
.auth-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border, #E8E8E8);
    border-radius: 0 !important;
    background: #fff;
    transition: border-color 0.2s;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    border-color: var(--primary, #C6A43F);
    box-shadow: none;
    outline: none;
}

.auth-form label {
    color: var(--dark, #0B0C10);
    margin-bottom: 0.25rem;
    font-weight: 500;
    display: block;
}

/* Сообщения об ошибках */
.auth-form .errorlist {
    color: #dc3545;
    list-style: none;
    padding-left: 0;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--secondary, #999999);
}

.auth-footer a {
    color: var(--primary, #C6A43F);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Кнопка */
.auth-form .btn-submit {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.5rem;
}