.register {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    position: relative;
    z-index: 10;
    width: 100%;
}

.register__form br {
    display: none;
}

.registration__overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    z-index: 20;
}

.register__content {
    display: flex;
    flex-flow: row wrap;
    padding: 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.register__info,
.register__form {
    box-sizing: border-box;
    width: 100%;
    z-index: 30;
}

.register,
.register h2,
.register h5 {
    color: #fff !important;
    font-family: 'KoHo', sans-serif !important;
}

.register__info {
    margin-bottom: 2rem;
}

.register__info .subtitle {
    font-size: 1.5rem;
    font-weight: bold;
}

.register__form label {
    margin-bottom: 1rem !important;
}

.register__form h5 {
    margin-bottom: 0.5rem;
}

.register__form .wpcf7-list-item {
    margin-left: 0.1rem;
}

.register__form input,
.register__form textarea,
.register__form select {
    font-weight: bold;
    padding: 0.8rem 2rem !important;
    font-family: 'KoHo', sans-serif !important;
}

.register__form textarea {
    height: 90px;
}

.register__form select {
    appearance: none;
    background-color: #fff;
    background-image: url('./assets/arrow.svg') !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 2rem) 50% !important;
    background-size: 1.4rem !important;
    cursor: pointer;
}

.register__form input[type=submit] {
    margin-left: auto;
    display: block;
}

.wpcf7-not-valid-tip {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 0.5rem;
}

@media only screen and (min-width: 1024px) {
    .register__info,
    .register__form {
        width: 50%;
    }

    .register__info {
        padding-right: 2rem;
    }
    
    .register__form {
        padding-left: 2rem;
    }
}