@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
    --bg-light: #f2eee9;
    --bg-main: #dadccf;
    --bg-accent: #a89f8e;
    --accent: #c97e70;
    --accent-hover: #b86a5e;
    --text-dark: #4e3e35;
}

/* === Сброс === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === Структура страницы === */
html, body {
    min-height: 100%;
    height: auto;
}

body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-main), var(--bg-accent));
    color: var(--text-dark);

    min-height: 100vh;         /* фон на весь экран */
    display: flex;
    flex-direction: column;
    padding-top: 120px;
}

/* Контент занимает доступную высоту */
.auth-container {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

/* Форма */
.auth-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5em 2em;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-card h2 {
    margin-bottom: 1em;
}

/* Поля формы */
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: left;
}

label {
    font-size: 0.95em;
}

input {
    padding: 0.8em;
    border: 1.5px solid var(--bg-accent);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: var(--accent);
}

/* Кнопка */
.primary-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 0.9em;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1em;
}

.primary-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* Переключение */
.switch-text {
    text-align: center;
    margin-top: 1em;
    font-size: 0.95em;
}

.switch-text a {
    color: var(--accent);
    text-decoration: none;
}

.switch-text a:hover {
    text-decoration: underline;
}

/* === Навигация === */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
}

.logo-text {
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text:hover {
    color: var(--accent);
}

/* === Футер — всегда снизу === */
.footer {
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 1em 0;
    margin-top: auto;
}

.footer .icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-bottom: .5em;
}

.footer .icons a {
    text-decoration: none;
    color: var(--text-dark);
}

.footer .icons a:hover {
    color: var(--accent);
}

/* === Адаптивность === */
@media (max-width: 480px) {
    .auth-card {
        padding: 2em 1.5em;
    }

    input {
        font-size: 0.95em;
    }

    .primary-btn {
        font-size: 0.95em;
    }
}

.error-message {
    color: #c47a6a;
    font-size: 0.9em;
    margin-top: 5px;
}
