﻿@charset "UTF-8";

html, body {
    height: 100%;
    position: relative;
}

html {
    /* R├®-├®quilibrage du Rem face au Pixel pour des calculs simples: ex) 10px=1.0rem */
    font-size: 62.5%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    font-size: 1.6rem;
}

.container {
    position: relative;
    margin: 0 auto;
    padding: 0 4rem;
}

    .container:before, .container:after {
        content: " ";
        display: table;
    }

    .container:after {
        clear: both;
    }

.row {
    /*display: -webkit-box;*/
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
}

a, .bt, .forget {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    a:hover, a:link, .bt:hover, .bt:link, .forget:hover, .forget:link {
        text-decoration: none;
    }

.login {
    position: relative;
    border-bottom: 20px solid #f8f4ef;
    background-image: url("/images/bg_adlpro_login.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 8rem 0;
}

.logo {
    display: inline-block;
}

.col-5 {
    width: 100%;
    float: left;
}

.login-box {
    padding: 0 10rem 0 0;
    color: white;
}

    .login-box h1 {
        font-size: 2.2rem;
        font-weight: 400;
        line-height: 3.3rem;
        margin-bottom: 2rem;
    }

    .login-box .alert {
        border-radius: 0;
    }

    .login-box label {
        font-weight: normal;
    }


.mdp_oublie {
    width: 200px;
}

    .mdp_oublie a {
        color: #fff;
    }

        .mdp_oublie a:hover {
            text-decoration: underline;
        }

form {
    margin-bottom: 16px;
}
form .form-group {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

    form .form-group label {
        display: block;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    form .form-group input[type="text"], form .form-group input[type="password"], form .form-group input[type="email"], form .form-group select {
        /*border: none;*/
        padding: 0.5rem;
        width: 100%;
        height: 4rem;
    }

        form .form-group input[type="text"]:required, form .form-group input[type="password"]:required {
            box-shadow: none;
            /*border: 4px solid transparent;*/
            outline: none;
        }

            form .form-group input[type="text"]:required:required:focus, form .form-group input[type="password"]:required:required:focus {
                border-color: #00c6ff;
            }

    form .form-group .forget {
        display: inline-block;
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.5);
        width: 50%;
    }

        form .form-group .forget:hover {
            text-decoration: underline;
        }

    form .form-group input[type="submit"] {
        float: right;
        font-size: 1.7rem;
        font-weight: 700;
        text-transform: uppercase;
        color: white;
        background-color: #8f0050;
        border: none;
        padding: 1rem 2rem;
        -webkit-border-radius: 0.8rem;
        -moz-border-radius: 0.8rem;
        border-radius: 0.8rem;
        cursor: pointer;
        margin-bottom: 3rem;
    }

        form .form-group input[type="submit"]:hover {
            background-color: #780043/*#d8b600*/;
        }

.form-control#Login, .form-control#Password {
    border-radius: 0;
    width: 100%;
    /* border:transparent;*/
}

.modal-open .modal-body form .form-group input[type="submit"], .modal-open .modal-body form .form-group label {
    text-transform: capitalize;
    margin-bottom: 0;
}

.modal-open .modal-body form .form-group {
    margin-bottom: 10px;
}

.openlog {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #f8f4ef;
}

    .openlog:before {
        font-family: 'FontAwesome';
        content: "\f105";
        font-size: 1.8rem;
        font-weight: 700;
        margin-right: 1rem;
        display: inline-block;
        text-decoration: none;
    }

    .openlog:hover {
        text-decoration: underline;
        color: white;
    }
.logo-login {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5rem 5rem 1rem 6.5rem;
    margin: 0 10rem 0 0;
    color: black;
}
@media screen and (min-width:768px) and (max-width:991px) {
    .logo-login {
        margin: 0 10rem 0 10rem !important;
    }
}

@media screen and (min-width:576px) and (max-width:767px) {
    .logo-login {
        margin: 0 5rem 0 5rem !important;
    }
}
@media screen and (max-width:575px) {
    .logo-login {
        margin: 0 2rem 0 2rem !important;
    }
}

.actualites {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 5rem 5rem 5rem;
    margin: 0 10rem 0 0;
    color: black;
}

    .actualites h2 {
        font-size: 1.4rem;
        text-transform: uppercase;
        font-weight: 600;
    }

    .actualites p {
        font-size: 1.5rem;
        font-weight: 600;
    }

.footer {
    padding: 3rem 0;
    text-align: center;
}

    .footer ul {
        margin: 0 0 3rem 0;
        padding: 0;
    }

        .footer ul li {
            font-size: 1.4rem;
            font-weight: 600;
            list-style: none;
            display: inline-block;
            margin-right: 1rem;
        }

            .footer ul li a {
                color: #0b1c44;
                margin-right: 1rem;
            }

                .footer ul li a:hover {
                    text-decoration: underline;
                }

    .footer p, .footer .contact {
        font-weight: 600;
        color: black;
        margin: 0;
        text-align: center;
        display: block;
    }

        .footer p:before, .footer .contact:before {
            font-family: 'FontAwesome';
            margin-right: 1rem;
        }

    .footer p {
        font-size: 1.6rem;
    }

        .footer p:before {
            display: inline-block;
            content: "\f095";
            font-size: 1.8rem;
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform: rotate(90deg);
        }

    .footer .contact {
        font-size: 1.5rem;
        text-decoration: underline;
    }

        .footer .contact:hover {
            text-decoration: none;
        }

        .footer .contact:before {
            display: inline-block;
            text-decoration: none;
            content: "\f0e0";
        }

/***********************************
***** MEDIA QUERY ******************
***********************************/
@media (max-width: 575px) {
    .login-box {
        padding: 0 2rem;
    }

    .actualites {
        margin: 0 2rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }

    .login-box {
        margin-bottom: 3rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .login-box {
        padding: 0 5rem;
    }

    .actualites {
        margin: 0 5rem;
    }
}

@media (min-width: 576px) {
    .container {
        width: 540px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 720px;
        max-width: 100%;
    }

    .login-box {
        padding: 0 10rem;
        margin-bottom: 3rem;
    }

    .actualites {
        margin: 0 10rem;
    }
}

@media (min-width: 992px) {
    .container {
        width: 960px;
        max-width: 100%;
    }

    .col-5 {
        width: 50%;
        float: left;
    }

    .login-box {
        padding: 0 10rem 0 0;
        margin-bottom: 0;
    }

    .actualites {
        margin: 0 10rem 0 0;
    }

    .footer ul {
        text-align: left;
        margin-bottom: 0;
    }

    .footer p, .footer .contact {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
        max-width: 100%;
    }
}

/*# sourceMappingURL=adllogin.css.map */
