

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    width: 100vw;
    font-family: 'Montserrat', sans-serif;
    background-color: #0B7F8E;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-ext {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: start;
    width: 525px;
    height: 440px;
    border: 1.5px solid #b2b2b2;
    text-align: center;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.container-input {
    width: 100%;
}

.cont-img-logo {
    margin-top: 25px;
    width: 100%;
}

.img-logo {
    width: 90px;
    height: 90px;
}

.input-form-ext {
    background-color: #ffffff;
    color: black;
    font-weight: normal;
    font-size: 20px;
    border-radius: 2px;
    padding: 10px 10px;
    margin: 8px 0;
    width: 100%;
    border: 1.5px solid #b2b2b2;
    letter-spacing: 0.5px;
}

#login::placeholder {
    color: #363636;
}

#mot_de_passe::placeholder {
    color: #363636;
}

.btn-connexion {
    width: 100%;
    background-color: #0B7F8E;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    padding: 11px 40px;
    margin-top: 4px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
}

.btn-connexion:hover {
    background-color: #067383;
}

.btn-connexion:active {
    transform: scale(0.95);
}

@media (max-width: 1600px) {
    .form-ext {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
        padding: 25px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: start;
        width: 450px;
        height: 380px;
        text-align: center;
    }

    h1 {
        font-size: 35px;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    p {
        font-size: 14px;
        font-weight: 100;
        line-height: 20px;
        letter-spacing: 0.5px;
        margin: 20px 0 30px;
    }

    .container-input {
        width: 100%;
    }

    .cont-img-logo {
        width: 100%;
    }

    .img-logo {
        width: 75px;
        height: 75px;
    }

    .input-form-ext {
        font-size: 16px;
        border-radius: 2px;
        padding: 8px 10px;
        margin: 8px 0;
        width: 100%;
        letter-spacing: 0.5px;
        border: 1.5px solid #b2b2b2;
    }

    #login::placeholder {
        color: #363636;
    }

    #mot_de_passe::placeholder {
        color: #363636;
    }

    .btn-connexion {
        width: 100%;
        background-color: #0B7F8E;
        border: none;
        color: #FFFFFF;
        font-size: 16px;
        font-weight: bold;
        padding: 8px 40px;
        margin-top: 4px;
        border-radius: 2px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: transform 80ms ease-in;
        cursor: pointer;
    }

    .btn-connexion:hover {
        background-color: #067383;
    }

    .btn-connexion:active {
        transform: scale(0.95);
    }

    /**********************************************************************************************************************/
}

@media only screen and (max-width: 450px) {
    body {
        height: 100%;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        background-image: url('../img/lbsa_background_phone.PNG');
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
    }

    .form-ext {
        background-color: rgba(255, 255, 255, 0.6);
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        padding: 15px;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: start;
        height: auto;
        width: 92vw;
        text-align: center;
        border: 1px solid #b9b9b9;
        margin-bottom: 100px;
    }

    h1 {
        font-size: 40px;
        font-weight: bold;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    p {
        font-size: 14px;
        font-weight: 100;
        line-height: 20px;
        letter-spacing: 0.5px;
        margin: 20px 0 30px;
    }

    .container-input {
        width: 100%;
    }

    .cont-img-logo {
        margin-top: -40px;
        margin-bottom: 20px;
        width: 100%;
    }

    .img-logo {
        width: 90px;
        height: 90px;
        margin-top: 80px;
    }

    .input-form-ext {
        font-size: 18px;
        border-radius: 2px;
        padding: 8px 10px;
        margin: 8px 0;
        width: 100%;
        letter-spacing: 1px;
        border: 1px solid #b9b9b9;
    }


    .btn-connexion {
        font-size: 18px;
        font-weight: bold;
        height: 50px;
        margin-top: 4px;
        border-radius: 2px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: transform 80ms ease-in;
        cursor: pointer;
    }

    .btn-connexion:hover {
        background-color: #067383;
    }

    .btn-connexion:active {
        transform: scale(0.95);
    }

    /**********************************************************************************************************************/

}

@media only screen and (max-width: 300px) {
    body {
        height: 100%;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        background-image: url('../img/lbsa_background_phone.PNG');
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
    }

    .form-ext {
        background-color: rgba(255, 255, 255, 0.45);
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        padding: 10px;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: start;
        height: auto;
        width: 97.5vw;
        text-align: center;
    }


    h1 {
        font-size: 30px;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    p {
        font-size: 14px;
        font-weight: 100;
        line-height: 20px;
        letter-spacing: 0.5px;
        margin: 20px 0 30px;
    }

    .container-input {
        width: 100%;
    }

    .cont-img-logo {
        width: 100%;
    }

    .img-logo {
        width: 90px;
        height: 90px;
        margin-top: 50px;
    }

    .input-form-ext {
        color: black;
        font-weight: bold;
        font-size: 16px;
        border-radius: 2px;
        border: none;
        padding: 6px 10px;
        margin: 8px 0;
        width: 100%;
        letter-spacing: 0.5px;
    }

    #login::placeholder {
        color: #363636;
    }

    #mot_de_passe::placeholder {
        color: #363636;
    }

    .btn-connexion {
        width: 100%;
        background-color: #0B7F8E;
        border: none;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: bold;
        padding: 7px 40px;
        margin-top: 4px;
        border-radius: 2px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: transform 80ms ease-in;
        cursor: pointer;
    }

    .btn-connexion:hover {
        background-color: #067383;
    }

    .btn-connexion:active {
        transform: scale(0.95);
    }
}



