/* Mise en forme */

body { 
    margin: 0; font-family: Arial, sans-serif; 
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main{
    width: 80%;
    text-align: center;
}
header{
    text-align: center;
}
.logo {
    width: 100vw;   
}
.logo>img{
    max-width: 80%;
}
p{
    font-size: 1.5rem;
}
h1{
    font-size: 2.5rem;
}
h2{
    font-size: 2rem;
}
.choix_theme{
    margin: auto;
}
.theme{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    
}
.services__lambda_photos{
    display: flex;
    justify-content: space-evenly;
    margin-top: 0;
    margin-bottom: 2rem;  
}
.theme_link{
    color: black;
}
.services__lambda h2{
    margin-bottom: 0;
}
.photo{ 
    box-shadow: 0 0 2vw var(--photo-shadow);
    border: solid 1px black;
    border-radius: 10px; 
    width: 60%; 
    margin: 20px 5%;  
}
.conditions_generales{
    display: flex;
}
.conditions_generales a{
    margin: 0 1rem 2rem;
    color: black;
    text-decoration: none;
}
/* color : #0249AF */
 /*********************/
                    /*** form contact ***/

.form-container {
    margin: 2rem auto 1rem;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 1rem var(--services-box-shadow);
    width: 80%;
    max-width: 500px;
    animation: fadeIn 0.5s ease;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: bold;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 6px;
    font-weight: bold;
    color: #555;
    font-size: 1.5rem;
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--services-box-shadow);
    box-shadow: 0 0 0 3px var(--button-box-shadow);
}

textarea {
    resize: vertical;
    min-height: 250px;
}
#form-response {
    margin-top: 15px;
    font-weight: bold;
}
.form-container button{
    height: 2rem;
}
.success {
    color: green;
}

.error {
    color: red;
}
