*{
    box-sizing: border-box;
    padding: 0 ;
    margin: 0;
    font-size: 11px;

}
body{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
color: #fff;
text-shadow: 0 1px 2px #000;
background-color: #333;

}
form{
 
    width: 50%;
    box-shadow: 0 0 10px #52b919;
    padding: 30px 20px 35px 20px;
    border-radius: 10px;
    display: flex
;
    flex-direction: column;
    gap: 2rem;

}
form .erreur{

 
    color: #ff0000;
    font-size: 1.5em;
    text-align: center;
    background-color: #ffffff0f;
    /* height: 2em; */
    padding: 0.5em;
    border-radius: 1em;
    letter-spacing: 0.02em;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem; /* Espace sous le logo */
}

.logo img {
    display: block;
    width: 35%;
    border-radius: 50%;
}

input{
    
    padding: 0 5em 1em;
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 1.2em;
    width: 100%;
}
select{
    padding: 0 5em 1em;
    border: 0;
    background-color: transparent;
    color: #000000;
    font-size: 1.4em;
    width: 100%;
}
input:focus{
    outline: 0;
}
fieldset{
    padding: 0;
    border: 2px solid #fff;
    border-radius: 4px;

}
fieldset:focus-within{
    border-color: #b02727;

}
legend{
    margin-left: 0.75em;
    padding-inline: 0.5em;
    font-size: 1.25em;
}
.submit {
   
    background-color: #52b919;
    color: white;
    font-size: 1.2em;
    padding: 0.8em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    align-self: center;
    width: 50%;
    position: relative;
    left: 25%;
}

.submit:hover {
    background-color: #3e8e41; /* Vert foncé au survol */
}
.lien{
    
    display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.lien a {
    text-align: center;
    color: #ffffff; /* Couleur verte */
    text-decoration: none; /* Supprime le soulignement */
    font-size: 1.2em;
}

a:hover {
    text-decoration: underline; /* Ajoute un soulignement au survol */
    color: #b02727; /* Change la couleur au survol */
}
.g-recaptcha {
    transform: scale(0.85);
    transform-origin: center;
    display: flex
;
    justify-content: center;
    margin: 10px -20px;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 1068px) {
    form{
       
        width: 100%;
       
    
    }

 
    .capcha{
        margin: auto -10px;
        display: flex;
        position: absolute;
    background-color:red;
  
    }
    
}