body {
    font-family: 'Work Sans', sans-serif;
    background-image: url('../img/sign/back-sign.webp');
  }

/**           header            */
.create {
    padding: 0em;
}
form a {
    color: #1B1921;
    font-size: 14px;
}
.create h1 {
    font-size: 33px;
    color: #0D141C;
    font-weight: 700;
    font-family: 'Work Sans';
}
/*** form            **/
.sign-all {
    display: flex
;
    padding: 2em 4em;
    gap: 4em;
}
form {
    width: 100%;
}
.form-div-2 {
    width: 45%;
}
.form-div {
    padding: 2em;
    width: 55%;
    background-color: #fff;
    border-radius: 20px;
}
.input-control label {
    font-size: 17px;
    color: #0D141C;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 0.5em;
    padding-top: 1em;
    font-family: 'Work Sans';

}
.input-control input {
    background-color: #ffff;
    border: 1px solid #CFDBE8;
    padding: 1em;
    width: 100%;
    border-radius: 12px;
}
.input-control input::placeholder {
    color: #4D7399;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Work Sans';
}
button.log-btn {
    width: 100%;
    margin-top: 2em;
    border: none;
    background-color: #B8FF7A;
    padding: 0.7em;
    border-radius: 100px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Work Sans';
    border: solid 1px #000;
}
.confirm-control {
    display: flex;
    gap: 2em;
}
.confirm{
    width: 50%;

}
form p {
    color: #4D7399;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Work sans';
    padding-top: 1em;
}
label.terms {
    color: #0D141C;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Work sans';
}
input#terms {
    transform: scale(1.2);
}

/** responsivité  **/

@media screen and (max-width: 790px) {
    .sign-all {
        padding: 1em 1em;
        gap: 0em;
        flex-direction: column-reverse;
    }.form-div {
    padding: 0em 1em;
    width: 100%;
}
.input-control label {
    font-size: 14px;
}
.form-div-2 {
    width: 100%;
}
.create {
    padding: 2em 1em;
}
form {
    width: 100%;
}
label.terms {
    font-size: 10px;
}
input#terms {
    transform: scale(1);
}
}