/*---------------------------- ELEMENT COMMUN ----------------------------*/
body {
    font-family: Arial, Helvetica;
    font-size: 14px;
    color: #676a7a;
    text-align: center;
    background-color: #f1f1f1;
}

input,
textarea,
select {
    border-width: 1px;
    border-style: solid;
    color: #000000;
    font: normal 14px Arial, Helvetica, sans-serif;
}
.clr {
    clear: both;
}

/*---------------------------- ELEMENT MAIN ------------------------------*/
.content {
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    max-width: 490px;

    text-align: left;
    border: 1px solid #b3b3b3;
}

.content-head {
    height: 40px;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    padding-left: 15px;
    line-height: 2.5em;

    font-size: 16px;
    background-color: #5496b9;
}
.content-head span {
    text-transform: capitalize;
    font-size: 11px;
    padding-left: 2px;
}

.content-inner {
    padding: 15px;
    font-size: 14px;

    color: #b3b3b3;
    background-color: #fff;
}

.message {
    padding-left: 30px;
    padding-bottom: 15px;
    text-align: center;
    color: red;
}

/*------------------------ flex 1 ------------------------*/
.content-flex1 {
    display: flex;
}
.verrou {
    width: 70px;
    background: #fff url("img_login/verrou.gif") center no-repeat;
}
.content-form {
    width: calc(100% - 100px);
}
.line {
    display: flex;
    padding-top: 10px;
}
.line .label {
    width: 100px;
    padding: 5px;
    text-align: right;
}
.line .form {
    width: calc(100% - 105px);
}

@media screen and (max-width: 600px) {
    .content-flex1,
    .line {
        flex-direction: column;
    }
    .verrou {
        height: 100px;
        width: 100%;
    }
    .content-form,
    .line .form {
        width: 100%;
    }
    .line .label {
        text-align: left;
        padding: 0;
        padding-bottom: 4px;
    }
}

/*------------------------ form ------------------------*/
form input {
    width: 100%;
    padding: 5px;
}

.submit {
    display: block;
    height: 30px;

    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;

    border: 0;
    background: #92d4e5;
    background: linear-gradient(#92d4e5, #5496b9);
}

.submit:hover {
    cursor: pointer;
    background: #92d4e5;
    background: linear-gradient(#5496b9, #92d4e5);
}

.test {
    cursor: pointer;
}
