
.step-group-holder,
.step-group-holder:active {
    width: 480px;
    padding: 32px;
    border: 1px solid #755BE2;
    background: #FFF;
    box-shadow: 0px 8px 18px -6px rgba(84, 84, 84, 0.12), 0px 12px 42px -4px rgba(84, 84, 84, 0.12);
    flex-direction: column;
    align-items: center;
    gap: 16px;
    display:flex;
}
.step-input-holder {
    display:flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-height: 200px;
    transition: all 0.4s;
    opacity: 1;
}

.step-input-holder.inactive {
    max-height: 0;
    opacity: 0;
}
.step-input-holder.inactive.hidden {
    display: none;
}


.step-input-holder label {
    color: #1A1B20;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}


.floating-label-group {
    position: relative;
}
.floating-label {
    position: absolute;
    pointer-events: none;
    left: 1rem;
    top: 50%;
    transition: 0.2s ease all;
    opacity: 0.5;
    transform: translateY(-50%);
}

.floating-label.minimized {
    font-size: 12px;
    top: 7px;
    transform: translateY(0);
}

#phoneInputHolder .floating-label.minimized {
    top: 14px;
}


.floating-input {
    border: 1px solid #ced4da;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.floating-input:focus,
.floating-input:not(:placeholder-shown) {
    padding-top: 1.5rem;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.75rem;
    opacity: 1;
}
.not-valid ~ .floating-label {
    color: #FF1612 !important;
    opacity: 1;
}
#business-email-wrap {
    width: 100%;
    max-width: 458px;
}
#business-email-wrap input{
    width: 100%;
    max-width: 458px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--silver-9-c-9-c-9-c, #9C9C9C);
    background: var(--ghost-white-fafbfc, #FAFBFC);
    color: #1a1b20;
    font-family: "Poppins";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 16px 14px ;
}
#slide1 .floating-label {
    display: none;
}
#slide2 #business-email-wrap label:not(.floating-label) {
    display: none;
}

.step-input-holder input {
    display: flex;
    height: 50px;
    padding: 18px 64px 18px 25px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background: #FBFAFF;
    border: none;
}
.step-group-holder button {
    display: flex;
    width: 100%;
    height: 54px;
    padding: 12px 60px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

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

    .step-group-holder,
    .step-group-holder:active {
        width: 100%;
        padding: 0;
        border: none;
        box-shadow: none;
    }

}
