.main-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 27%;
    background: var(--color-secondary-1);
}

.main-form {
    justify-content: center;
}

.reg-form {
    width: clamp(200px, 100%, 600px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.reg-form .input {
    position: relative;
    display: flex;
    align-items: center;
}

.reg-form input:not([type="checkbox"]),
.reg-form select {
    width: 100%;
}

.reg-form input[type="text"],
.reg-form input[type="password"],
.reg-form input[type="date"],
.reg-form input[type="number"],
.reg-form input[type="search"],
.reg-form input[type="email"],
.reg-form select {
    padding: 19px 5px 5px;
}

.reg-form input[type="text"].invalid,
.reg-form input[type="text"]:focus.invalid,
.reg-form input[type="text"]:focus-visible.invalid,
.reg-form input[type="password"].invalid,
.reg-form input[type="password"]:focus.invalid,
.reg-form input[type="password"]:focus-visible.invalid,
.reg-form input[type="date"].invalid,
.reg-form input[type="date"]:focus.invalid,
.reg-form input[type="date"]:focus-visible.invalid,
.reg-form input[type="number"].invalid,
.reg-form input[type="number"]:focus.invalid,
.reg-form input[type="number"]:focus-visible.invalid,
.reg-form input[type="search"].invalid,
.reg-form input[type="search"]:focus.invalid,
.reg-form input[type="search"]:focus-visible.invalid,
.reg-form input[type="email"].invalid,
.reg-form input[type="email"]:focus.invalid,
.reg-form input[type="email"]:focus-visible.invalid,
.reg-form select.invalid,
.reg-form select:focus.invalid,
.reg-form select:focus-visible.invalid {
    border: 2px solid red;
    outline: none;
    box-shadow: none;
}

.reg-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.reg-form .input.currency::after {
    content: '€';
    position: absolute;
    right: 10px;
    font-size: 24px;
    color: var(--color-grey);
}

.reg-form .input.currency input[type="number"],
.textfield {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.reg-form .input.currency input[type=number]::-webkit-inner-spin-button, 
.reg-form .input.currency input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.reg-form .input:not(.check) label:not(.label) {
    position: absolute;
    left: 10px;
    top: 12px;
    color: var(--color-grey);
    pointer-events: none;
    transform-origin: left;
    transition: all 300ms ease-in-out;
}

.reg-form .input.focused:not(.check) label:not(.label) {
    position: absolute;
    left: 6px;
    pointer-events: none;
    top: 0;
    transform: scale(0.7);
}

.verification input[type="text"] {
    padding: 16px 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid #000;
}

.reg-div {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    min-height: inherit;
}

.reg-div.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.form-wrapper {
    width: clamp(700px, 80%, 1500px);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

@media (max-width: 700px) {
    .form-wrapper {
        width: 100%;
    }
    
    .reg-form {
        width: 100%;
    }
}

@media (min-width: 701px) {
    .main-form {
        align-items: center;
    }
}

.check label:not(.switch) {
    position: absolute;
    top: 12px;
    color: var(--color-grey);
    pointer-events: none;
}

.switch {
    position: absolute;
    display: inline-block;
    min-width: 40px;
    height: 22px;
    margin: 0 !important;
    top: 10px;
    right: 0;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0 !important;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--button-background);
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before { 
    border-radius: 50%;
}

.reg-form .select:not(.selectsearch):not(.selectlocation) input,
.reg-form .search input {
    caret-color: transparent;
    cursor: default;
}

.reg-form .pass-check {
    background: var(--color-grey);
    width: 18px;
    height: 18px;
}

.reg-form .pass-check.valid {
    background: limegreen;
     box-shadow: 0 0 6px 1px limegreen;
}

.tox-tinymce {
    width: 100%;
}

.timeline {
    height: 20px;
}

.timeline::before {
    content: '';
    height: 1px;
    background: var(--color-dark);
    left: 0;
    right: 0;
    position: absolute;
}

.timeline > div {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 1px var(--color-dark);
}
.timeline > div.active::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--color-dark);
}

.choose-plan {
    border: 2px solid transparent;
}

.choose-plan.active {
    border: 2px solid var(--color-primary);
}

/*
.fr-wrapper>div:first-child,
#fr-logo {
    display: none;
}
*/

label.label input[type="file"] {
    position: absolute;
    top: -1000px;
}
.label {
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 5px;
    border: 1px solid var(--color-verlingo);
    background: transparent;
    display: inline-block;
}
.label span {
    color: var(--color-verlingo);
}
.label:hover {
    background: var(--color-verlingo);
}
.label:hover span {
    color: var(--color-light);
}

.label.upload {
    border: 1px solid var(--color-secondary-1);
}
.label.upload span {
    color: var(--color-secondary-1);
}
.label.upload:hover {
    background: var(--color-secondary-1);
}
.label.upload:hover span {
    color: var(--color-light);
}