/*
Trial lesson stuff
*/
.form-step {
    display: contents;
}
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db; /* gray */
    transition: background-color 0.3s ease;
}

.step-dot.active {
    background-color: #2563eb; /* blue */
}

.step-line {
    width: 40px;
    height: 2px;
    background-color: #d1d5db;
    margin: 0 6px;
}