<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -----nav----- */
.nav-list {
    justify-content: flex-end;
}

.nav-list ul li a {
    font-size:1rem;
}

.nav-list ul li {
    padding: 2px 0;
}

.navbar-toggler-icon {
    font-size: 1.6rem;
}

/* -----progressbar----- */

.progress-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.progress-area ul {
    display: flex;
}

.progress-area ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.progress-area ul li .label {
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: bold;
}

.progress-area ul li .step {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #d7d7c3;
    margin: 16px 0 10px;
    display: grid;
    place-items: center;
    color: ghostwhite;
    position: relative;
}

.step::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 3px;
    background-color: #d7d7c3;
    right: 20px;
    z-index: -2;
}

.first::after {
    width: 0;
    height: 0;
}

.progress-area ul li .step .number {
    display: none;
}

.progress-area ul li .step p {
    font-size: 18px;
}

.progress-area ul li .active {
    background-color: #D82A43;
}

.progress-area li .active::after {
    background-color: #D82A43;

}

.progress-area ul li .active p {
    display: none;
}

.progress-area ul li .active .number {
    display: flex;
}


/* -----form----- */
.form {
    display: flex;
    justify-content: center;
}

.form-row {
    width: 35%;
}

.space {
    /* justify-content: center; */
    justify-content: space-around;
}

@media screen and (max-width:820px) {
    .form-row {
        width: 90%;
    }
    .progress-area ul li {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 28px;
    }
}
</pre></body></html>