/* Контейнер авторизации */
.auth-container {
    width: 100%;
    max-width: 360px;
    padding: 20px;
}

/* Логотип */
.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo-img {
    width: 200px;
    height: auto;
}

/* Заголовок */
.auth-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Подзаголовок */
.auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Форма */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Ошибка */
.auth-error {
    background-color: #ffe0e0;
    color: #c00;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.4;
}

/* Ссылка назад */
.auth-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #4a90d9;
    text-decoration: none;
}

.auth-link:active {
    color: #3a7bc8;
}

/* Ссылки на скачивание */
.auth-header-links {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 200;
    white-space: nowrap;
}
.auth-header-link {
    display: inline-block;
    padding: 8px 14px;
    background-color: #e8e8e8;
    border: 2px solid #c8a84e;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}
.auth-header-link:active {
    background-color: #d9d9d9;
}