#connexion {
    display: none;
    position: absolute;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-mentions.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Oxanium_regular;
}

#connexion input {
    text-align: center;
}

.login-form-container,
.signup-form-container {
    position: relative;
    margin: 0 auto;
    width: 470px;
    padding: 1rem 15px 15px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#connexion h1 {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
    color: #efb72c;
    margin-bottom: 2rem;
}

#connexion .signup-form-container h1 {
    margin-bottom: 1rem;
}

#connexion h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
	line-height: 25px;
	font-weight: 300;
    text-align: center;
}


#connexion form {
    width: 100%;
}

.form-submit {
    width: 100%;
    font-family: "Trajan Pro";
    font-size: 1.2rem;
    text-shadow: 0px 0px 5px #000000;
    color: #e8e8e8;
    padding: 1rem 1rem 0.75rem 1rem;
    /* margin-top: 1rem; */

    text-align: center;
    transition: background-color 0.4s;
    
    background-color: rgba(20,68,86,0.5);
    border: 1px #5fc6ce solid;
    border-radius: 0.5rem;
    cursor: pointer;
}

.form-submit:hover {
    background-color: rgb(20,68,86);
    transition: background-color 0.4s;
}

p.reset_pw {
    margin-top: 0.5rem;
    text-align: right;
    margin-bottom: 0;
}

p.reset_pw a {
    color: #597d85;
    font-family: Oxanium_regular;
    font-size: 1rem;
}

p.reset_pw a:hover {
    text-decoration: none;
    color: #d99f26;
}


#connexion p.register {
    font-family: Oxanium_regular;
    color: white;
    font-size: 1rem; 
    margin-top: 1rem;  
    text-align: center;
}

.signup-form-container p.register {
    /* margin-top: 0.5rem; */
}

#connexion p.register a {
    color: #d99f26;
    cursor: pointer;
}

a.btn-facebook-login {
    display: inline-block;
    font-family: Oxanium_regular;
    color: white !important; 
    text-decoration: none;
    line-height: 0.8rem;
    font-size: 0.8rem;
    background-color: #3b589e;
    border:1px white solid;
    border-radius: 1rem;
    /* margin-bottom: 0.5rem; */
    padding: 0.7rem 1rem 0.5rem 1rem;
    cursor: pointer;
}

#login-error {
    display: none;
}

#signup-error {
    display: none;
}

#signup-error p{
    margin: 0;
}


@media screen and (max-width: 768px) {

    #connexion h1 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    #connexion .form-register h1 {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    #connexion h3 {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    p.reset_pw {
        margin-bottom: 0;
    }

    .form-submit {
        font-size: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

}