body {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.main,
.aside {
    height: 100dvh;
    min-height: 600px;
}

.main {
    width: 60%;
    padding: 40px 20px;
}

.aside {
    width: 40%;
    background: var(--color_green);
    padding: 40px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
}

.logo_container {
    width: auto;
    height: 80px;
    background: var(--color_white);
    padding: 10px 20px;
    border-radius: 10px;
}

.logo_icon {
    width: auto;
    height: 100%;
}

.aside_title {
    width: auto;
    height: auto;
    color: var(--color_white);
}

.info_steps {
    width: 100%;
    height: auto;
    list-style: none;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.info_step {
    width: auto;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.info_step_indicator {
    width: 46px;
    height: 46px;
    position: relative;
    border: 2px solid var(--color_white);
    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.info_step_indicator::after {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--color_white);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.info_step:last-of-type>.info_step_indicator::after {
    display: none;
}

.info_step_icon {
    width: 38px;
    height: 38px;
    filter: invert(100%);
    opacity: 0;
    transition: ease-out .2s;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info_step_num {
    font-size: 1.6rem;
    color: var(--color_white);
    transition: ease-out .2s;
}

.info_step_indicator.active .info_step_num {
    opacity: 0;
}

.info_step_indicator.active .info_step_icon {
    opacity: 1;
}

.info_step_text {
    color: var(--color_white);
    font-size: 1.25rem;
}

.form {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.form_step {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 180%;
    transform: translate(-50%, -60%);
    transition: ease-out .2s;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 45px;
}

.form_fifth_step {
    height: 80%;
}

.form_step.center {
    left: 50%;
}

.form_step.okey {
    left: -80%;
}

.form_step_title {
    color: var(--color_black);
}

.form_item {
    width: 100%;
    height: 52px;
    position: relative;
    border: 2px solid var(--color_green);
    border-radius: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.form_input {
    width: 100%;
    height: 100%;
    padding: 0px 6px;
    color: var(--color_black);
}

.form_submit {
    width: 100%;
    height: 100%;
    padding: 0px 6px;
    color: var(--color_black);
    background: var(--color_water_green);
    color: var(--color_white);
    cursor: pointer;
    transition: ease-out .2s;
    border-radius: 6px;
}

.form_third_step .form_item:first-of-type .form_input:first-of-type {
    height: auto;
}

.form_first_step .form_item:first-of-type:before,
.form_first_step .form_item:nth-of-type(2):before,
.form_item:nth-of-type(3):before,
.form_first_step .form_item:last-of-type:before,
.form_second_step .form_item:first-of-type:before,
.form_second_step .form_item:last-of-type:before,
.form_third_step .form_item:first-of-type:before,
.form_third_step .form_item:nth-of-type(2):before,
.form_third_step .form_item:nth-of-type(3):before,
.form_third_step .form_item:last-of-type:before,
.form_fourth_step .form_item:first-of-type:before,
.form_fourth_step .form_item:nth-of-type(2):before,
.form_fourth_step .form_item:last-of-type:before,
.form_fifty_step .form_item:first-of-type:before,
.form_fifty_step .form_item:nth-of-type(2):before,
.form_fifty_step .form_item:last-of-type:before {
    position: absolute;
    top: -20%;
    left: 8px;
    background: var(--color_white);
    padding: 0 6px;
    color: var(--color_green);
    z-index: 100;
    font-weight: bold;
    font-size: 1.05rem;
    font-family: var(--font_title);
}

.form_first_step .form_item:first-of-type:before {
    content: 'Nombre';
}

.form_first_step .form_item:nth-of-type(2):before {
    content: 'Apellido';
}

.form_first_step .form_item:nth-of-type(3):before {
    content: 'DNI';
}

.form_first_step .form_item:last-of-type:before {
    content: 'Dirección';
}

.form_second_step .form_item:first-of-type:before {
    content: 'Correo electrónico';
}

.form_second_step .form_item:last-of-type:before {
    content: 'Teléfono';
}

.form_third_step .form_item:first-of-type:before {
    content: 'Logo (opcional)';
}

.form_third_step .form_item:nth-of-type(2):before {
    content: 'Nombre';
}

.form_third_step .form_item:nth-of-type(3):before {
    content: 'Rubro';
}

.form_third_step .form_item:last-of-type:before {
    content: 'Descripción';
}

.form_fourth_step .form_item:first-of-type:before {
    content: 'Correo electrónico del servicio';
}

.form_fourth_step .form_item:nth-of-type(2):before {
    content: 'Direción del servicio (o remoto)';
}

.form_fourth_step .form_item:last-of-type:before {
    content: 'Whatsapp (opcional)';
}

.form_fifty_step .form_item:first-of-type:before {
    content: 'Instagram (opcional)';
}

.form_fifty_step .form_item:nth-of-type(2):before {
    content: 'TikTok (opcional)';
}

.form_fifty_step .form_item:last-of-type:before {
    content: 'Youtube (opcional)';
}

.form_btns_container {
    width: auto;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form_btn_container {
    width: 200px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.form_btn_next_overlay,
.form_btn_back_overlay {
    width: 100%;
    height: 100%;
    background: var(--color_black);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: ease-out .2s;
    border-radius: 8px;
}

.form_btn {
    width: 100%;
    height: 100%;
    color: var(--color_white);
    border-radius: 8px;
    cursor: pointer;
    transition: ease-out .2s;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.form_btn_back {
    background: var(--color_violet);
}

.form_btn_next {
    display: none;
    background: var(--color_water_green);
}

.form_btn_next.active {
    display: flex;
}

.form_btn_back_overlay.active {
    visibility: visible;
    opacity: .5;
}

.form_btn_next_overlay.active {
    visibility: visible;
    opacity: .5;
}

.form_submit {
    display: none;
}

.form_submit.active {
    display: block;
}

.form_data {
    width: 100%;
    height: 70%;
    overflow: auto;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.preview {
    width: 116px;
    height: 116px;
    object-fit: contain;
}

@media(hover:hover) {
    .form_btn:hover {
        transform: scale(.95);
    }

    .form_submit:hover {
        transform: scale(.98);
    }
}

@media screen and (max-width: 1082px) {
    body {
        flex-direction: column;
    }

    .aside {
        width: 100%;
        height: 80px;
        min-height: inherit;

        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    .logo_container {
        width: auto;
        height: 72px;
    }

    .main {
        width: 100%;
        height: 90dvh;
        min-height: inherit;
        padding: 10px 40px;
    }

    .info_steps {
        display: none;
    }
}

@media screen and (max-width: 1082px) {
    .form_btns_container {
        width: 100%;

        justify-content: space-between;
    }

    .form_btn_container {
        width: 48%;
    }
}