.sign-up__body{
    width: 100%;
    height: 100%;
    background: url('../images/sign-up-background.jpg') no-repeat;
}
@media screen and (min-width:768px){
    .sign-up__body{
        background-size: cover;
        background-position: center;
    }
}

.sign-up__container{
    height: 100%;

}
@media screen and (min-width:768px){
    .sign-up__container{
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
    }
}

.sign-up__register-text{
    color: #fff;
    margin-top: 1.6rem;
    text-align: center;
}

.sign-up__register-link, .sign-up__register-link:hover, .sign-up__register-link:visited, .sign-up__register-link:focus{
    font-weight: bold;
    color: #fff;
}

.sign-up{
    width: 100%;
    max-width: 960px;
    margin: 0px auto;
}

.sign-up__logo{
    padding: 1rem 0px;
}
.sign-up__logo img{
    max-width: 300px;
    padding: 0px 2rem;
}

.sign-up__content{
    padding: 0px 2rem;
    display: flex;
}

.captcha{
    margin-top: 2rem;
    background:grey;
    padding: 2rem;
}

.sign-up__form{
    background-color: #fff;
    padding: 2rem;
    flex-basis: 100%;
}
@media screen and (min-width:768px){
    .sign-up__form{
        flex-basis: 45%;
    }
}

.signup__recover-password-link{
    text-decoration: none;
    color:#7B8096;
    font-weight: 400;
    font-size: 0.8rem;
}

.signup__recover-password-link:hover{
    text-decoration: underline;
    color:#7B8096;
}

.sign-up__button{
    width: 100%;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    text-transform: none;
    font-weight: bold;
}

.sign-up__button:hover, .sign-up__button:visited{
    color: #fff;
}

.mail__button{
    color: #fff;
    background-color: #64C497;

}

.google__button{
    color: #fff;
    background-color: #4480F4;
}

.linkedin__button{
    color: #fff;
    background-color: #346DA6;
}


.sign-up__message{
    display: none;
}
@media screen and (min-width:768px){
    .sign-up__message{
        display: block;
        flex-basis: 55%;
        padding: 3rem 2rem;
        background: url('../images/sign-up-message.jpg') no-repeat;
        background-size: cover;
    }
}

.sign-up__title{
    font-size: 2.4em;
    margin-top: 6rem;
    color: #495057;
}

.sign-up__lead{
    color: #495057;
    margin-top: 2rem;
}