/* Image arrière plan */

#CONTENT{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}

#Loc{
    border-radius: 20px;
    margin: 5%;
    padding: 20px;
    background-color: rgb(227, 223, 223);
    display: flex;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    align-content: space-between;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.iframe{
    width: auto;
    height: auto;
}

fieldset {
    -moz-border-radius: 8px;
    border-radius: 8px;
}
h1 {
    text-align: center;
    color: #333;
}
   /* body {
            font-family: Arial, sans-serif;
            margin: 30px;
        } */
    form {
        max-width: 500px;
        margin: auto;
    }

    label {
        display: block;
        margin-top: 15px;
        font-weight: bold;
    }

    input,
    textarea {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        box-sizing: border-box;
    }

    /* button {
            margin-top: 20px;
            padding: 10px 20px;
            cursor: pointer;
        } */
    .success {
        color: green;
        font-weight: bold;
        margin-top: 20px;
    }

    .error {
        color: red;
        font-weight: bold;
    }

    .radio-group {
        display: flex;
        gap: 10px;
    }

    .radio-group input[type="radio"] {
        display: none;
    }

    .radio-group label {
        padding: 8px 16px;
        border: 2px solid #007BFF;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    .radio-group input[type="radio"]:checked+label {
        background-color: #007BFF;
        color: white;
    }