/**************************/
/*** Page de connection ***/
/**************************/

body{
    overflow-y: hidden;
}

.module-login{
    background-color: rgba(255, 255, 255, 0.400);
    margin: 20px;
    margin-left: 50%;
    margin-top: auto;
    transform: translate(-50%,20%);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 2px 4px 4px 2px gray;
    width: 400px;
    height: 350px;
    position: relative;
}

/* Photo de profile */

.pp{
    width: 150px;
    height: 150px;
    border: 1px solid black;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-100px);
    border-radius: 50%;
    background-color: #00274D;
}

.pp img{
    width: 100%;
    align-items: center;
    opacity: 100%;
}

/* formulaire */

.formulaire-login{
    width: 80%;
    height: 90%;
    z-index: 99;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50%;
    transform: translate(35%,-70%);
}

.label-login{
    width: 50px;
    height: 50px;
    z-index: 99;
    background-color: #00274D;
    border: 1px solid #00274D;
    position: absolute;
    transform: translateX(-135%);
}

.label-img-login{
    width: 60%;
    margin: 20%;
    z-index: 99;
    position: relative;
}

input[type=text]{
    padding-left: 70px;
    transform: translateX(-70px);
    z-index: 0;
    position: block;
    outline: none;
    width: 80%;
    height: 52px;
    border: 2px solid #385272;
    margin-bottom: 50px;
    color: white;
    background-color: #385272;
}

.label-padlock{
    width: 50px;
    height: 50px;
    z-index: 99;
    margin-left: auto;
    margin-top: auto;
    background-color: #00274D;
    border: 1px solid #00274D;
    position: absolute;
    transform: translateX(-135%);
    
}

.label-img-padlock{
    width: 60%;
    margin: 20%;
    align-items: center;
    position: relative;
}

input[type=password]{
    padding-left: 70px;
    transform: translateX(-70px);
    z-index: 0;
    position: block;
    outline: none;
    width: 80%;
    height: 52px;
    color: white;
    border: 2px solid #385272;
    background-color: #385272;
}


.btn-connection{
    background: rgba(255, 255, 255, 0.400);
    border-radius: 0px 0px 30px 30px;
    height: 50px;
    width: 240px;
    margin-left: 50%;
    margin-top: auto;
    transform: translate(-50%,117%);
    position: relative;
    z-index: 0;
    cursor: pointer;
    box-shadow: 2px 4px 4px 2px gray;
}

input[type=submit]{
    margin-left: 50%;
    margin-right: 50%;
    transform: translate(-50%,70%);
    cursor: pointer;
    background-color: transparent;
    border: transparent;
}