body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
flex-direction: column;
    align-items: center;
    //height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.login-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.extra-options {
    margin-top: 15px;
}

.extra-options a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #007bff;
}

.extra-options button {
    background-color: #0088cc;
    color: white; /* Белый текст для кнопки Telegram */
    width: 100%;
    margin: 10px 0;
}

.extra-options button:hover {
    background-color: #006699;
}

.telegram-login-button {
    display: inline-block;
    background-color: #0088cc; /* Цвет Telegram */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    margin: 5px 0;
}

.telegram-login-button:hover {
    background-color: #0077b3; /* Чуть темнее при наведении */
}