﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.comboBox {
    margin: 10px;
}

.logotypeMenu {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0px 10px 0px 0px;
}

/* Авторизация */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.auth-form {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: white;
}

    .auth-form h2 {
        text-align: center;
        margin-bottom: 25px;
    }

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #777;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #ddd;
    }

    .auth-divider span {
        padding: 0 10px;
    }

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

    .auth-links a {
        color: #007bff;
        text-decoration: none;
    }

#telegram-login-button {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}
