/*** LOGIN ************************************************************************************/
.pageLogin {
    margin: 0 auto;
    padding: 40px 15px;
}
@media screen and (min-width: 768px) {
    .pageLogin { padding: 80px 5%; }
}
@media screen and (min-width: 1400px) {
    .pageLogin { max-width: 1200px; }
}



/*** TITRE PAGE *************************************/
.pageLogin_title {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .pageLogin_title {
        margin-bottom: 50px;
        font-size: 36px;
        line-height: 36px;
    }
}



/*** CONTENT ****************************************/
.pageLogin .main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .pageLogin .main {
        flex-direction: row;
        justify-content: center;
        align-items: unset;
    }
}



/*** LOGO *******************************************/
.pageLogin_logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .pageLogin_logo { margin-bottom: 30px; }
}
@media screen and (min-width: 768px) {
    .pageLogin_logo { padding: 20px 60px 20px 0; }
}

/*** IMG ***/
.pageLogin_logo img {
    max-width: 300px;
    max-height: 200px;

    /*** FIX ***/
    display: block;
    margin: 0;
    padding: 0;
}


/*** LIEN ***/
.pageLogin_backLink {
    display: none;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    background-color: #008AA1;

    /*** TRANSITION ***/
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}
.pageLogin_backLink:before {
    content: "";

    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
}

/*** HOVER ***/
.pageLogin_backLink:hover { background-color: black; }


/*** SEPARATOR **************************************/
.pageLogin_separator {
    width: 1px;
    background: #909090;
}
@media screen and (max-width: 767px) {
    .pageLogin_separator { display: none; }
}


/*** CONTENT ****************************************/
.pageLogin_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .pageLogin_content { padding: 20px 0 20px 60px; }
}

/*** BLOCK BT ***/
.pageLogin_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pageLogin_btn a {
    width: 80%;
    min-width: 200px;
    padding: 15px;

    color: white;
    font-size: 16px;
    text-align: center;
    text-decoration: none;

    background-color: #008AA1;
    border: 1px solid #008AA1;
}
.pageLogin_btn a:first-child { margin-bottom: 20px; }

@media screen and (min-width: 768px) {
    .pageLogin_btn a {

        /*** TRANSITION ***/
        transition-property: all;
        transition-duration: .3s;
        transition-timing-function: ease-in-out;
    }
    .pageLogin_btn a:hover {
        color: #008AA1;
        background-color: white;
    }
}



/*** FORM *******************************************/
.pageLogin_form { display: none; }

.user-login-form {
    min-width: 300px;
    padding: 20px 15px;
    background: #f4f4f4;
}

.user-login-form div { margin-top: 15px; }
.user-login-form div:first-child { margin-top: 0; }

/*** LABEL ***/
.user-login-form label {
    display: block;
    margin-bottom: 5px;

    color: #008AA1;
    text-align: left;
}

/*** INPUT ***/
.user-login-form .form-text {
    width: 100%;
    height: 40px;

    margin: 0;
    padding: 0 10px;

    color: #008AA1;
    font-size: 14px;
    font-style: normal;

    background: white;
    border: 1px solid white;
}

/*** SUBMIT ***/
.user-login-form .form-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 40px;
    margin-top: 20px;
    padding: 0 30px;

    color: white;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;

    background-color: #008AA1;
    border: none;
    background-image: none;

    /*** TRANSITION ***/
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}
.user-login-form .form-submit:hover {
    color: white;
    background: black;
}


/*** LISTE LIEN *************************************/
.pageLogin_form ul {
    display: flex;
    flex-direction: column;

    margin: 30px 0 0 0;
    padding: 0;
}

.pageLogin_form ul li { margin-top: 5px; }
.pageLogin_form ul li:first-child { margin-top: 0; }

.pageLogin_form ul li a {
    color: #008AA1;
    text-decoration: none;
}
.pageLogin_form ul li a:hover { text-decoration: underline; }

#block-user-login ul { display: none; }
