:root{
    --primary-color:blue; 
}
.btns-group{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
}
.btn{
    padding: 0.75rem;
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #f3f3f3;
    border-radius: .25rem;
    cursor: pointer;
    transition:all 250ms ease-in-out;
}

.btn:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color)
}

.btn:active{
    transform: scale(.98);
}

.with-50{
    width: 50%;
}

.m-esq{
    margin-left: 3px;
}

.ml-auto{
    margin-left: auto;
}

.form-step{
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}

@keyframes animate{
    from{
        transform: scale(1,0);
        opacity: 0;
    }
    to{
        transform: scale(1,1);
        opacity: 1;
    }
}

.form-step.active{
    display: block;
}

.progressbar{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 4rem 0;
    counter-reset:step;
}

.progressbar::before, .progress{
    content:"";
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;

}

.progress{
    background-color: var(--primary-color);
    width: 0%;
    transition: 0.3s ease-in-out;
}

.progress-step{
    width: 35px;
    height: 35px;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

}

.progress-step::before{
    counter-increment: step;
    content:counter(step);
}

.progress-step::after{
    content:attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: .80rem;
    color:#666666
}

.progress-step.active{
    background-color: var(--primary-color);
    color: #f3f3f3;
}

.form .campos .campo {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}