.formulaire {
    background-color: white;
    width: 80vw;
    padding: 20px 50px;
    border-radius: 30px;
    margin-top: 30px;
}

.submitForm {
    background-color: #1D97FF;
    color: white;
    border: none;
    cursor: pointer;
    font-family: mybold, sans-serif;
    font-size: 130%;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-top: 30px;
}

.submitForm:hover {
    background-color: #177ed5;
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.form {
    width: 100%;
}

.input {
    text-align: left;
    padding: 0 15px;
}

.textArea {
    width: 97%;
    height: 100px;
    padding: 15px;
}

.custom-file-upload {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    height: 250px;
    border-radius: 30px;
    background-color: #f2f2f2;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-file-upload label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200%;
    color: black;
    text-align: center;
    user-select: none;
}

.custom-file-upload:hover {
    background-color: #e6e6e6;
}

