/*
CSS Stylesheet dedicated for everything related to login
*/

/*
Useful color

blue sky :
#00E6F6
regular blue :
#1F6CAB
dark blue :
#082A3A
 */

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

.bg-login
{
    background-image: url("./../images/bg-site.jpg");
    filter: blur(6px);
    -webkit-filter: blur(6px);

    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-login {
    border-top: solid #1F6CAB 6px;
    background-color: rgba(255, 255, 255);
    color: black;
    border-radius: 0 0 2% 2% / 0 0 3% 3%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52.5%);
    z-index: 2;
    width: min(80vw, 40em);
    padding: 2em;

    box-shadow: 0px 0px 8px rgba(0,0,0,0.2),0px 10px 32px rgba(0,0,0,0.8)
}

ul
{
    padding: 0;
    display: flex;
    list-style: none;
}

li
{
    display: flex;
    align-items: center;
    width: 50%;
}

a
{
    display: flex;
    justify-content: center;
}

img
{
    width: 70%;
}

#register-ul > li > a > img
{
    width: 50%;
}

h1
{
    display: flex;
    justify-content: center;
    color: #1F6CAB;
}

form
{
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    margin-bottom: 2em;
}

input
{
    margin-bottom: 1em;
    height: 2.2em;
    border: none;
    border-bottom: #1F6CAB 0.15em solid;
}

input:focus{
    outline: none;
}

button
{
    background-color: #1F6CAB;
    color: #FFF;
    font-size: large;
    height: 2.2em;
    border: solid #1F6CAB 0.05em;
    border-radius: 2% / 20%;
    transition: color, background-color 400ms cubic-bezier(.76,.05,.86,.06)
}

button:hover
{
    background-color: #FFF;
    color: #1F6CAB;
}

span
{
    display: block;
}

#first_span
{
    padding-bottom: 0.9em;
    border-bottom: 1px solid #D5DCE5;
    margin-bottom: 0.9em;
}


span > a
{
    text-decoration: none;
    color: #1F6CAB;
    display: inline;
}

span > a:hover
{
    text-decoration: underline;
}

footer{
    display: none;
}

/*
For signup only
*/
.two-inputs
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.label-and-input
{
    display: flex;
    flex-direction: column;
    width: 48%;
}