.wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 1280px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;

    /* max-width: 800px; */
}

.formWrapper {
    display: flex;
    width: 100%;
    max-width: 800px;
    border-right: solid 1px #979797;
    margin: 50px 0;
    padding: 20px 50px 20px 0;
}

.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 620px;
}

.submit:active {
    opacity: 0.5;
}

.inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 48px;
    font-size: 14px;
}

.title {
    font-family: var(--ff-main);
    padding: 0 0 56px 0;
    color: #fff;
    font-size: 4em;
    font-weight: 300;
    letter-spacing: var(--letter-spacing-base);
}

.infoWrapper {
    display: flex;
    flex-direction: column;
    padding-left: 50px;

}

.info>* {
    line-height: normal;
}

.submit {
    color: white;
    font-weight: 400;
    padding: 12px 24px;
    border-radius: 2px;
    white-space: nowrap;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    min-width: 245px;
    margin: 0 auto;
    height: 48px;
}


@media (max-width: 800px) {
    .content {
        flex-direction: column;
        padding: calc(15px + 4vw);
    }

    .title {
        text-align: center;
        font-size: 2rem;
    }

    .formWrapper {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 0;
        max-width: unset;
    }

    .form {
        max-width: unset;
    }

    .infoWrapper {
        padding-left: 0;
        flex-direction: column;
    }

    .infoWrapper>div {
        text-align: center;
    }
}