@import url("general.css");

/* Tout le fornmulaire */

label{
    font-size: 2em;
}

form{
    background-color: rgba(255, 255, 255, .2);
    font-weight: bolder;
    border: 2px solid;
    border-color: rgb(1, 183, 255);
    border-radius: 3px;
}

/* Contenu formulaire */

.container{
    margin: 0 auto;
    width: 50%;
    margin-bottom: 7em;
}

.input-container{
    text-align: center;
    margin: 1em;
}

/* Bouton de connexion */

input[type="submit"]{
    font-size: 1.2em;
    margin-bottom: 15px;
    border-radius: 30px;
    padding: 1.2em;
    background-color: rgb(106, 6, 133);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

input[type="submit"]:hover{
    background-color: rgb(130, 10, 163);
}

/* Le pseudo et le mot de passe */

input[type="text"], input[type="password"]{
    font-size: 1.4em;
    width: 100%;
    background-color: rgba(75, 4, 94, 1);
    border-radius: 7px;
    color: rgb(173, 119, 174);
}

input[type="text"]:hover, input[type="password"]:hover{
    background-color: rgb(106, 6, 133);
}

input[type="text"]:focus, input[type="password"]:focus{
    outline-color: rgb(1, 183, 255);
}