/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: url('back.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    overflow: hidden; /* Убираем прокрутку страницы */
}

/* Container Styles */
.container {
    text-align: center;
    background-color: rgba(44, 44, 46, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    width: 90%;
    max-height: 90vh; /* Ограничиваем высоту контейнера до 90% от высоты экрана */
    overflow-y: auto; /* Включаем прокрутку внутри контейнера */
    margin: 20px auto; /* Центрируем контейнер с небольшим отступом */
    box-sizing: border-box;
}

/* Input Fields */
input {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Buttons */
.button {
    padding: 12px 20px;
    background-color: #f3c523;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Links */
a {
    color: #f3c523;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
}
