.nl-registration-form-container {
    margin: 0 auto;
    width: 980px;
    height: calc(100vh - 112px);
    overflow: scroll;
    scrollbar-width: none;
    padding-bottom: 34px;
}

.nl-registration-form-container .nl-type-body2 {
    margin-bottom: 20px;
}

.nl-registration-form-left-container,
.nl-registration-form-right-container {
    width: 100%;
    padding: 0px 16px;
}

.nl-registration-form-left-container .nl-registration-form-flex-container div:nth-child(1) input {
    width: 205px;
    margin-right: 32px;
}

.nl-registration-form-left-container .nl-registration-form-flex-container div:nth-child(2) {
    width: 100%;
}

.nl-registration-form-left-container {
    border-right: 1px solid var(--nl-border-color);
}

.nl-registration-form-flex-container {
    display: flex;
}

.nl-registration-form-flex-container :not(.nl-registration-form-flex-container) div:not(.nl-registration-form-flex-container) {
    margin-bottom: 12px;
}

.nl-select-wrapper.language {
    width: 115px;
}

.nl-select-wrapper.occupation {
    max-width: 253px;
}

.nl-select-wrapper.province {
    max-width: 183px;
}

.nlb-button-primary {
    display: flex;
    margin-left: auto;
    margin-top: 20px;
}

.nl-registration-form-container .nl-language {
    position: absolute;
    top: 10.5px;
    right: 16px;
    font-size: 1.4rem;
    font-weight: 600;
    height: 40px;
    padding: 10px 0px;
    color: var(--nl-mid-emphasis-color);
}

.nl-registration-form-container .nl-language:hover {
    color: var(--nl-primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
}

.nl-registration-form-container .nl-language:active {
    color: var(--nl-high-emphasis-color);
}

.warning {
    background-color: #fae8cd;
    border: 1px solid #ed8b00;
    margin-bottom: 16px;
    padding: 20px 10px;
    width: 980px;
    font-size: 1.3rem;
    line-height: 20px;
    color: #303030;
}

.warning ul {
    margin: 0px;
}

.nl-button-container {
    position: relative;
}

#loading {
    position: absolute;
    top: 0px;
}

#loading span {
    color: #303030;
    font-size: 1.3rem;
}

.nl-loading-spinner {
    height: 16px;
    width: 16px;
    animation-name: spin;
    animation-duration: 2500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    vertical-align: middle;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}