/* =========================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ЛОГИНА (login.html)
   ========================================= */

/* Черный кружок с вопросом в хлебных крошках */
.help-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

/* Контейнер для центрирования логина */
.login-page-container {
    max-width: 650px;
    margin: 40px auto; 
    font-family: Arial, sans-serif;
}

/* Информационное окошко (голубая рамка) */
.info-alert {
    border: 1px solid #bce8f1;
    background-color: #f9fcfe;
    padding: 15px;
    border-radius: 4px;
    color: #005696;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-alert a {
    color: #005696;
    text-decoration: underline;
    margin-left: 4px;
}

.info-icon-blue {
    background-color: #2b84c8;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 15px;
    font-style: italic;
    font-family: serif;
    flex-shrink: 0;
}

/* Главный серый блок с кнопками */
.login-box {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 20px;
}

/* Кнопки выбора логина */
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    box-sizing: border-box;
}

.login-btn img {
    height: 20px;
    margin-right: 15px;
}

.login-btn:hover {
    background-color: #f0f0f0;
}

/* Нижний блок ссылок */
.login-bottom-links {
    background-color: #f3f3f3;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-bottom-links a {
    color: #0d628f;
    font-size: 13px;
    text-decoration: underline;
}

.login-bottom-links a:hover {
    text-decoration: none;
}

/* Скрытая форма ввода логина и пароля */
.hidden-form {
    display: none; 
    margin: 0 0 15px 0;
    padding: 20px;
    background-color: #ececec;
    border: 1px solid #ccc;
    border-top: none; /* Сливаем с кнопкой */
    border-radius: 0 0 4px 4px;
}

.hidden-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.hidden-form button {
    width: 100%;
    padding: 10px;
    background-color: #005696;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.hidden-form button:hover {
    background-color: #003e6b;
}