
body {
    font-family: Arial, sans-serif;
    background-color: rgb(77, 161, 156);
}

input {
    border-top: none;
    border-left: none;
    border-right: none;
}

input:focus {
    outline:  none;
}

textarea {
    border-top: none;
    border-left: none;
    border-right: none;
}

textarea:focus {
    outline: 1px solid rgb(77, 161, 156);
}

.cadre_formulaire {
    display: flex;
    flex-direction: row;
    align-self: center;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    margin-top: 2%;
}

.formulaire {
    padding: 50px;
}

.charte_bordure {
    border-color: rgb(77, 161, 156);
}

.charte_ecriture {
    color: rgb(77, 161, 156);
}

.logo {
    transform: scale(0.5);
    max-width: 600px;
}

.valider {
    width: 100px;
    padding: 10px;
    background-color: rgb(77, 161, 156);
    color: white;
    border: none;
    border-radius: 15px;
    margin: 15px;
}

.msg_retour {
    width: 500px;
    margin-top: 25px;
    margin-bottom: 25px; 
}

.loading {
    display: none;
}

.erreur {
    display: block;
    color: red;
    font-size: x-small;
}

.message {
    border-bottom-width: 2px;
    height: 150px;
}

@media (max-width: 768px) {
    .cadre_formulaire {
        max-width: 600px;
        flex-direction: column;
    }
    .msg_retour {
        transform: scale(0.8);
    }
    .loading_display {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }
}
@media (max-width: 567px)  {
    .cadre_formulaire {
        flex-direction: column;
        max-width: 300px;
        max-height: 650px;
    }
    .label {
        font-size: large;
    }
    .logo {
        width: 200px;
        margin-bottom: -80px;
    }
    .formulaire {
        padding: 0;
        transform: scale(0.6);
        margin-top: 0;
    }
    .valider {
        transform: scale(2);
        margin-top: 40px;
    }
    .msg_retour {
        transform: scale(0.5);
    }
}