﻿main {
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100%;
    align-items:center;
}

.fenetreConnexion {
    background-color: white;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);

    width: 100%;
    max-width: 600px;
    height: auto;
    margin-left:auto;
    margin-right:auto;
    padding: 20px 20px;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    row-gap: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form .button {
    width: 200px;
    height: 50px;
}

.divForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding: 0px 10px 30px 10px;
}

.divForm input {
    width: 100%;
    height: 20px;
    border: solid 3px #1c9dd9;
    border-radius: 10px;
    padding: 3px 5px;
}

.divForm label {
    width: initial;
}
