#registration_row .img-container {
    max-height: 800px;
    background: navajowhite;
}

#registration_row img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
}

#registration_row .reg-container {
    top: 0;
    left: 0;
    position: absolute;
}

#registration_row .reg-box {
    width: 50%;
    max-width: 580px;
    min-width: 250px;
    transform: translateX(5%);
}

#registration_row .reg-tab .tabs>div:nth-of-type(1) {
    width: 49%;
    margin-right: 1%;
}

#registration_row .reg-tab .tabs>div:nth-of-type(2) {
    width: 49%;
    margin-left: 1%;
}

#registration_row .reg-tab .tabs>div {
    height: 95px;
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    cursor: pointer;
    transition: .25s;
}

#registration_row .reg-tab div.active {
    background-color: white;
    border-color: white;
    color: var(--primary);
    position: relative;
    text-decoration: underline;
}

#registration_row .reg-tab button {
    background-color: inherit;
    color: inherit;
    border: none;
    font: normal normal bold 33px/45px Nunito;
}

#registration_row .reg-form {
    padding: 4%;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

#registration_row .reg-form>div {
    display: none;
}

#registration_row .reg-form>div.active {
    display: block;
}

#registration_row .reg-form form {
    font: normal normal bold 14px/24px Nunito;
    color: #4C4C4C;
}

#registration_row .reg-form form input {
    height: 46px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
}

#registration_row .reg-form form button {
    background-color: var(--primary);
    color: white;
    font: normal normal bold 24px/41px Nunito;
    border-radius: 5px;
}

#registration_row .reg-form .have-account, #registration_row .reg-form .have-account a {
    text-decoration: underline;
    font: normal normal bold 14px/24px Nunito;
    color: var(--secondary);
}

#registration_row .mobile{
    display:none;
}

@media screen and (max-width: 1199px) {

    #registration_row .reg-container {
        position: relative;
        background-color: #F8EFD2;
        padding: 70px 0 160px;        
    }

    #registration_row .reg-container::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 70px;
        top: -70px;
        left: 0;
        background: var(--cloud-svg);
        filter: invert(9%) sepia(9%) saturate(971%) hue-rotate(332deg) brightness(108%) contrast(95%);
        z-index: 5;
    }

    #registration_row .reg-box {
        width: 85%;
        transform: translateX(0);
        filter: drop-shadow(2px 4px 6px rgb(0 0 0 / 23%));
    }

    #registration_row .reg-tab button {
        font: normal normal bold 24px/19px Nunito;
    }

    #registration_row .reg-form form button {
        font: normal normal bold 24px/44px Nunito;
    }

    #registration_row .reg-form .have-account, #registration_row .reg-form .have-account a {
        font: normal normal bold 11px/19px Nunito;
    }
}

@media screen and (max-width: 768px) {

    #registration_row .reg-form {
        padding: 12% 10% 10%;
    }

    #registration_row .reg-tab .tabs>div {
        height: 48px;
    }

    #registration_row .reg-tab button {
        font: normal normal bold 14px/19px Nunito;
    }

    #registration_row .reg-form form button {
        font: normal normal bold 13px/44px Nunito;
    }

    #registration_row .mobile{
        display:block;
    }

    #registration_row .desk{
        display:none;
    }

}