body {
    flex-direction: row-reverse;
}

.container {
    width: 50%;
}

.container img {
    margin-bottom: 50px;
}

.form-signUp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px auto;
    width: 342px;
}

.form-signUp input {
    color: #6D6D6D;
    background-color: #E5E5E5;
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding: 16px;
    border-radius: 7px;
    border: none;
    margin-bottom: 15px;
}

.form-signUp button {
    border: none;
    border-radius: 7px;
    background-color: #C94A21;
    color: white;
    width: 100%;
    height: 38px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-signUp button:hover {
    background-color: #9c3b1b;
}

.form-signUp a {
    color: #C94A21;
    text-decoration: none;
    cursor: pointer;
    margin-top: 15px;
}

.form-signUp a:hover {
    text-decoration: underline;
}

/* --- Infos Left --- */

.infos-left {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 50%;
    background: url(../images/bg.png) no-repeat;
    background-position: center;
    background-size: cover;
}

.infos-left h1 {
    margin: 0 auto;
    max-width: 450px;
    line-height: 60px;
    font-size: 36px;
    font-weight: 700;
    color: white;
    padding: 0 2% 0 2%;
}

.infos-left h3 {
    max-width: 350px;
    margin: 50px auto;
    size: 16px;
    line-height: 21.12px;
    font-weight: 400;
    color: white;
    padding: 0 2% 0 2%;
}

@media screen and (max-width: 720px) {
    body {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }

    .container {
        width: 100%;
    }

    .container > img {
        margin-top: 40px;
    }

    .infos-left {
        width: 100%;
        margin-top: 100px;
    }

    .infos-left h1 {
        margin-top: 300px;
        font-size: 24px;
    }
}

@media screen and (max-width: 395px) {
    .infos-left h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .form-signUp {
        width: 300px;
    }

    .infos-left h1 {
        line-height: 40px;
    }
}

@media screen and (max-height: 568px) {
    .infos-left {
        margin-top: 250px;
    }
}