/* Страница авторизации */

.auth-body {
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        #f5f7fa 0%,
        #eef2f6 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;
}



/* Карточка входа */
.auth-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 44px;
    background-color: #ffffff;
    border-radius: 14px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);

    width: 100%;
    max-width: 440px;
}



.auth-card form {
    width: 100%;
    max-width: 360px;
}


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

.auth-logo img {
    max-height: 100px;
}

/* Заголовки */
.auth-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    margin-bottom: 28px;
    color: #5f6b7a;
}

/* Поля формы */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd2d9;
    border-radius: 4px;
    font-size: 14px;
}

/* Кнопка */
.btn-primary {
    margin-top: 16px;
    padding: 12px 24px;
    background-color: #0ea5e9; /* как акцент системы */
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0284c7;
}


/* Ошибка */
.auth-error {
    margin-bottom: 16px;
    padding: 10px;
    background-color: #fdecea;
    color: #b00020;
    font-size: 13px;
    border-radius: 4px;
    text-align: center;
}


@media (min-width: 992px) {
    .auth-logo img {
        max-height: 110px;
    }
}
