.register-background {
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
}
.register-background:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.register-block {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    width: 80%;
    border-radius: 12px;
    background-color: var(--register-color);
    z-index: 1;
}
.column {
    width: 50%;
    padding: 24px 24px;
    border-radius: 12px 0px 0px 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.column
{
    gap: 44px;
}
h3 {
    color: var(--main-color);
    font-size:40px;
}
.register-form {
    display:flex;
    flex-direction: column;
    gap: 16px;
}

.register-form input:not([type="checkbox"]) {
    all: unset;
    width: 100%;
    background-color: var(--gray);
    padding: 16px 16px;
    border-radius: 8px;
    color: var(--black);
}
.register-form input::placeholder {
    color: #acacac;
}
