/* ======== СТИЛИ ДЛЯ СТРАНИЦ АВТОРИЗАЦИИ ======== */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 71px); /* Высота топлайна 40+15+15+1 = 71px */
    padding: 0 20px;
}

.login-form-wrapper {
    background-color: #1A1A1A;
    margin-top: -71px;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.login-form-wrapper h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.login-btn {
    width: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* --- Вход через Telegram --- */
.telegram-auth {
    text-align: center;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #555;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #333;
}

.divider:not(:empty)::before {
    margin-right: .5em;
}

.divider:not(:empty)::after {
    margin-left: .5em;
}

.divider span {
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
}

.btn-telegram {
    background-color: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-telegram:hover {
    background-color: #0099e6;
}

/* --- Центрирование ---*/
.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #B5B5B5;
    line-height: 1.5;
}

.consent-checkbox-label a {
    color: #00BFFF;
    text-decoration: none;
}

.consent-checkbox-label a:hover {
    text-decoration: underline;
}

.consent-checkbox-input {
    margin-top: 5px;
    min-width: 20px;
    min-height: 20px;
}

