body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('fond.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.form-container {
    background-color: rgba(0, 0, 0, 0.7);
    margin: 50px auto;
    padding: 20px;
    max-width: 600px;
    border-radius: 10px;
}

input[type="text"],
button,
label {
    display: block;
    margin-top: 10px;
    font-size: 1em;
}

button {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
}


.choice-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.choice-wrapper {
    position: relative;
}

.choice-option {
    display: block;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    text-align: center;
    font-size: 1.1rem;
}

.choice-option:hover {
    background-color: #f0f0f0;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .choice-option {
    background-color: #007BFF;
    color: white;
    border-color: #007BFF;
}
