/* Общие стили */
body {
    font-family: Arial, sans-serif;
    background-image: url("{% static 'img/background.jpg' %}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Контейнер */
.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Заголовок */
h2 {
    color: #333;
    margin-bottom: 20px;
    position: absolute;
    top: 100px;
    left: 850px;
}

/* Поля формы */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form p {
    margin: 0;
}

/* Поля ввода */
input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Кнопка */
button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

/* Текст под формой */
p {
    margin-top: 15px;
}

p a {
    color: #007bff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

#ac{
    margin-top: 15px;
    position: absolute;
    top: 710px;
}
#ac a {
    color: #007bff;
    text-decoration: none;
    }
