.authorize-container .btn{
    min-width: unset;
    min-height: unset;
}
.wrap_steeps {
    width: 100%;
    max-width: 240px;
    margin: 30px auto;
    position: relative;
}
.wrap_steeps::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background-color: #C6D0E5;
    left: 10%;
    top: 50%;
    z-index: 0;
}
.wrap_steeps__item{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: relative;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
}
.wrap_steeps__item.active, .wrap_steeps__item.done{
    background-color: #F5F7FF;
    z-index: 1;
}
.wrap_steeps__item::after{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #C6D0E5;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
    background-color: #fff;
    z-index: 1;
}
.wrap_steeps__item.done::after{
    content: "\f00c";
    border: none;
    background-color: #3B69FF;
    font-size: 8px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap_steeps__item.active::after{
    border: 6px solid #3B69FF;
}
