.bodypage{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h2{
    font-family: "Comfortaa", sans-serif;
    color: #12086F;
}

input {
     border: 2px dashed #12086F;
     margin-top: 10px;
     padding: 5px;
     font-family: 'Comfortaa', sans-serif;
}

input:focus{
    background-color: #ccc;
    border: 2px solid #12086F;
}

button {
     margin-top: 10px;
     padding: 10px;
     font-family: 'Comfortaa', sans-serif;
     background-color: #12086F;
     color: white;
     border: none;
     border-radius: 50px;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover{
    cursor: pointer;
     transform: translateY(-3px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

button:active{
     transform: translateY(0px);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fleche_retour>a{
    font-family: 'Comfortaa', sans-serif;
    text-decoration: none;
    color: #12086F;
}
.fleche_retour>a:hover{
    color: #ccc;
    cursor: pointer;
}