#contact {
    background-color: rgb(24, 24, 26);
    padding: 0 0 2rem 0 !important;
}

#contact span.material-symbols-outlined {
    font-size: 2rem;
}

#contact a {
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    border-radius: 3px;
    display: flex;
    width: 30vw;
    margin: 2rem auto;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
    font-weight: bold;
    padding: 15px 25px;
}

#contact form {
    display: flex;
    background-color: rgb(39, 39, 41);
    flex-direction: column;
    padding: 2rem;
    width: 30vw;
    margin: 2rem auto 0;
    color: white;
}

#contact form label {
    font-size: 1.4rem;
}

#contact form input {
    font-size: 1.3rem;
    padding: 1rem;
    margin: 1rem 0 0 0;
    border: 3px solid #EFBF04;
    border-radius: 3px;
    background-color: white;
    font-family: "Source Sans 3", serif, sans-serif;
}

#contact form div:not(#form-response) {
    display: flex;
    margin: 1rem 0;
    flex-direction: column;
}

#contact #form-response {
    padding: 1rem;
    display: none;
    margin-bottom: 2rem;
    border-radius: 3px;
}

#contact #form-response.danger {
    display: block;
    border-left: 8px solid #A50000;
    background-color: #F8D7DA;
    color: #A50000;
}

#contact #form-response.success {
    display: block;
    background-color: #dae9e2;
    border-left: 8px solid #136840;
    color: #136840;
}

#contact form .choix div {
    display: flex;
    flex-direction: row !important;
    align-items: center;
}

.choix input {
    margin: 0 10px 0 0 !important;
    width: 20px;
    height: 20px;
    border: 2px solid #EFBF04;
    border-radius: 3px;
    color: black;
    /* outline: none; */
    cursor: pointer;
}

.choix input:checked {
    /* background-color: #EFBF04; */
    color: black;
}

#contact form button {
    background-color: #EFBF04;
    font-family: "Source Sans 3", serif, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: none;
    padding: 1rem 0;
    font-weight: bold;
    border-radius: 3px;
    color: white;
    letter-spacing: 5px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 1200px) {
    #contact a,
    #contact form {
        width: 80%;
    }

    #contact p {
        width: 90vw;
    }
    
    #contact form input[type="text"] {
        font-size: 1rem;
        height: 10px;
        /* min-height: 40px; */
    }
    #contact #submitContact .choix input {
        /* width: 10px;
        height: 10px; */
        /* border: 2px solid red; */
    }
}
