/* Reusable UI components */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    background: #fbc32c;
    color: #001A77;
}

.line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 5px;
}

.cancel-btn {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    background-color: #DC4CBE;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #b83da0;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #001A77;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.toast.show {
    opacity: 1;
}
