*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
}
body{
    background: var(--neutral-n-20, #F6F6F6);
    color: var(--text-clr);
    font-size: 16px;
    position: relative;
}


.wrapper{
    border-radius: 5px;
}

.wrapper .header{
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

.wrapper .header ul{
    display: flex;
}

.wrapper .header ul li{
    position: relative;
    margin-right: 180px;
}

.wrapper .header ul li:last-child{
    margin-right: 0;
}

.wrapper .header ul li::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 55px;
    width: 320%;
    height: 2px;
    background: black;
}

.wrapper .header ul li:last-child::before{
    display: none;
}

.wrapper .header ul li div{
    padding: 5px;
    border-radius: 50%;
}

.wrapper .header ul li p{
    width: 50px;
    height: 50px;
    background: var(--green-g-50, #F8F9E8);
    color: var(--neutral-n-60, #B6B9BA);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    border-radius: 200px;
}

.wrapper .header ul li.active::before,
.wrapper .header ul li.active p{
    border-radius: 200px;
    background: var(--green-g-300, #B9BF1C);
}

.block-form-1 {
    display: flex;
    flex-direction: row;
    gap: 19px;
}

.sub-block{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-block-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wrapper .form-wrap{
    margin-bottom: 35px;
}

.wrapper .form-wrap h2{
    color: var(--header-clr);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wrapper .form-wrap .input-wrap{
    width: 350px;
    max-width: 100%;
    margin: 0 auto 20px;
}

.wrapper .form-wrap .input-wrap:last-child{
    margin-bottom: 0;
}

.wrapper .form-wrap .input-wrap{
    display: block;
    margin-bottom: 5px;
}

.wrapper .form-wrap .input-wrap label{
    display: block;
    margin-bottom: 5px;
}

.wrapper .form-wrap .input-wrap input{
    border: 2px solid var(--secondary);
    border-radius: 3px;
    padding: 10px;
    display: block;
    width: 100%;
    font-size: 16px;
    transition: 0.5s ease;
}

.wrapper .form-wrap .input-wrap input:focus{
    border-color: var(--primary);
}

.wrapper .btns-wrap{
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
}


.wrapper .btns-wrap .common-btns{
    display: flex;
    justify-content: space-between;
}

.wrapper .btns-wrap .common-btns.form-1-btns{
    justify-content: flex-end;
}

.wrapper .btns-wrap .common-btns button{
    border: 0;
    padding: 12px 15px;
    background: var(--primary);
    color: var(--white);
    width: 135px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    border-radius: 3px;
    transition: 0.5s ease;
    cursor: pointer;
}

.wrapper .btns-wrap .common-btns button.btn-back{
    background: var(--secondary);
}

