.autoRegisterAs {
    width: 100%;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.autoRegisterAs form {
    width: 70%;
    margin: auto;
    box-shadow: 0 0 15px rgb(65, 65, 65);
    border-radius: 10px;
}

.autoRegisterAs .card_form {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: start;
    height: auto;
    transition: all 0.5s;
    width: auto;
    interpolate-size: allow-keywords;
    /* transform: translateX(-4011px); */
}

.autoRegisterAs .card_body .finsh_form {
    width: 100%;
    display: flex;    
    flex-direction: column;
}

.autoRegisterAs .card_body .finsh_form h5 {
    font-size: clamp(18px, 3vw, 30px);
    text-align: center;
}    

.autoRegisterAs .card_body {
    min-width: 100%;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    gap: 20px;    
    max-height: 350px;
    overflow-y: scroll;
}

.autoRegisterAs section.header {
    background-color: var(--border_btn_blue);
    color: #eee;
    border-radius: 10px 10px 0px 0;
    padding: 2.5rem;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.autoRegisterAs section.header picture {
    width: 80px;
    display: flex;
}

.autoRegisterAs section.header picture img {
    width: 100%;
    height: 100%;
}

.autoRegisterAs section.body {
    padding: 2.5rem;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0px;
    overflow-x: hidden;
    overflow-y: visible;
    max-height: none;
    background-color: #fff;
}

.autoRegisterAs section.footer {
    padding: 2.5rem;
    padding-top: 0rem;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #fff;
}

.autoRegisterAs section.footer .content_btn {
    justify-content: space-between;
}

.autoRegisterAs section.footer .content_btn button {
    width: 20%;
}

.autoRegisterAs .progress {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-around;
    overflow: visible !important;
    align-items: center;
    margin-bottom: 3rem;
}

.autoRegisterAs .progress .line {
    position: absolute;
    width: 16%;
    height: 100%;
    left: 0px;
    background-color: var(--border_btn_blue);
    border-radius: 10px;
    transition: all 0.5s;
}

.autoRegisterAs .progress .circle {
    background-color: #e9ecef;
    width: 50px;
    height: 50px;
    z-index: 2;    
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: all 1s;
}

.autoRegisterAs .progress .circle:nth-child(2) {
    background-color: var(--border_btn_blue);
    color: #eee;
}

@media (width < 700px) {
    .autoRegisterAs section.header picture {
        display: none;
    }

    .autoRegisterAs section.body,
    .autoRegisterAs section.header,
    .autoRegisterAs section.footer {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .autoRegisterAs form {
        width: 95%;
    }
}