
/* Общие стили для страницы */
body {
    background-image: url('background.png');
    /*background-size: cover;*/
    /*background-position: center;*/
    color: white;
}

.container {
    max-width: 600px;
    margin-top: 100px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    color: #000000;
}

.form-check-label {
    color: #000000;
}

.form-check-input {
    margin-right: 10px;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.card {
    background-color: rgba(218, 218, 218, 0.6);
    padding: 30px;
    border-radius: 15px;
}

.alert {
    background-color: rgba(0, 123, 255, 0.5);
    border-radius: 5px;
    color: white;
}

.link {
    color: #007bff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.form-check-label {
    align-items: flex-start;
    line-height: 1.5;
    flex-wrap: wrap;
}

.form-check-input {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
}

.form-check-label a {
    text-decoration: underline;
    color: #0d6efd;
    display: inline; /* Принудительное inline-поведение */
    white-space: normal; /* Разрешаем перенос */
}


