
body {
    padding: 0px;
}

form {
    margin: 45px;
}

.form-step, .form-step > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#progress-indicator {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.step-dot {
    background-color: #DDD;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.step-dot.active {
    background-color: #1d7484;
    color: #FFF;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #1d7484;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.loader-box {
    display: none;
}

.loader-box > div {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.block-item {
    display: block;
    padding: 10px;
    margin: 5px 0;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin: 20px;
    font-weight: bold;
}