

.form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
   
}

h1 {
    text-align: center;
    color: #333;
}

.form-step {
    display: none;
    text-align: left;
}

.form-step.active {
    display: block;
}

label {
    display: block;
    margin: 10px 0;
}

input[type="radio"] {
    margin-right: 10px;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
}
/* Progress Bar */
/* .progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;background-color:transparent !important;flex-direction: unset !important;
}

.progress-step {
    width: 30%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.progress-step.completed {
    background-color: #4caf50;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 50%;
}

.progress-step.completed:not(:last-child)::after {
    background-color: #4caf50;
} */
