/* OLD STYLE */
/*
@import url(//fonts.googleapis.com/css?family=Open+Sans:600,300italic,400,300,700);

body {
    background: #fff url(background.png);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans';
}
p, div {
    font-family: 'Open Sans';
}

p {
    text-align: justify;
    font-size: 0.9em;
}
.container {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 10px;
}

@media (max-width: 978px) {
    .container {
        padding: 10px 10px 0 10px;
         margin: 0;
    }
}   

.login-box {
    padding: 40px 30px 10px 40px;
    background-color: #fff;
    border: 12px solid rgba(65, 107, 130, 0.65);
    border-radius: 5px;
    position: relative;
    -webkit-box-shadow: 0 1px 1px rgba(65, 107, 130, 0.65);
    -moz-box-shadow: 0 1px 1px rgba(65, 107, 130, 0.65);
    box-shadow: 0 1px 1px rgba(65, 107, 130, 0.65);
}

img.logo {
    margin: 0 auto;
    padding-bottom: 20px;
}

.form-control {
    width: 80%;
    margin: 0 auto;
}

a.clean {
    text-decoration: none;
    color: inherit;
}
.copyright {
    margin-bottom: 0;
    padding-top: 20px;
}
*/


/* NEW STYLE - 28 05 2020 */

#logo_login {
    max-width:100%;
    height:100px;
}

input {
    filter: none;
}


html,
body {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b9c0c9;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b9c0c9;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #b9c0c9;
}

#zonePhoto,
#zoneForm {
    padding: 3.5%;
    float: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#zonePhoto {
    width: 60%;
    color: #fff;
    background-size: cover;
    background-image: url('../img/login/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
}

#zonePhoto #homeQuote {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 26px;
    text-align: center;
    width: 100%;
    line-height: 140%;
}

#zoneForm {
    width: 40%;
}

#zoneForm #content {
    width:100%;
    display: block;
}

#zoneForm #content img {
    margin-bottom: 60px;
}

#zoneForm #content form input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e1eaf9;
    margin-bottom: 20px;
    height: 50px;
    transition: padding 200ms ease-in-out;
    font-size: 14px;
}

#zoneForm #content form input:focus {
    outline: inherit;
    padding-left: 70px !important;
}

#zoneForm #content form input[type="text"] {
    padding: 10px 10px 10px 60px;
    background-image: url(../img/login/user.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    color: #b9c0c9;
}

#zoneForm #content form input[type="password"] {
    padding: 10px 10px 10px 60px;
    background-image: url(../img/login/key.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    color: #b9c0c9;
}

#zoneForm #content form input#button_login {
    transition: background-color 200ms ease-in-out;
    cursor: pointer;
    padding-left: 20px;
    background-color: #638fae;
    color: #fff;
    width: auto;
    float: right;
    background-image: url(../img/login/picto_arrow.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    padding-right: 40px;
}

#zoneForm #content form input#button_login:hover {
    background-color: #294f66 !important;
}

#zoneForm #content form a {
    color: #638fae;
    text-decoration: none;
    font-size: 12px;
}

#zoneForm #content form a:hover {
    text-decoration: underline;
}

span.mention {
    color: #b9c0c9;
    font-size: 10px;
    margin-top: 60px;
}

span.mention a {
    color: #b9c0c9;
    text-decoration: underline
}

span.mention a:hover {
    text-decoration: none;
}

.design1 {
    background-image: url('../img/login/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.design1 #zonePhoto {
    background-image: none;
}

.design1 #zonePhoto {
    width: 100%;
    height: 30%;
}

.design1 #zoneForm {
    float: inherit;
    background-color: #fff;
    height: auto;
    margin: 0 auto;
    max-width: 500px;
}

@media screen and (max-width: 980px) {
    body {
        padding: 20px 40px;
        background-image: url('../img/login/background.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    #zoneForm #content img {
        margin: 0 auto 20px auto;
        display: block;
    }

    #zonePhoto {
        background-image: none;
        padding: 0 0 20px 0;
    }

    #zonePhoto #homeQuote {
        font-size: 18px;
    }

    #zonePhoto,
    #zoneForm {
        width: 100%;
        height: auto;
    }

    #zoneForm {
        background-color: #fff;
    }

    span.mention {
        margin-top: 30px;
    }
}