/* General Styles */
@import 'https://fonts.googleapis.com/css?family=Athiti|Prompt';

body {
    font-family: 'Athiti', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-body {
    padding: 20px;
}

/* Progress Bar */
.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Add green border for valid inputs */
.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 5px #28a745;
}

/* Add red border for invalid inputs */
.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 5px #dc3545;
}

.progress-bar {
    background-color: #007bff;
    border-radius: 50px;
    transition: width 0.4s ease;
}

/* Stepper Styles */
.steps-form {
    text-align: center;
    margin-bottom: 30px;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #e9ecef;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.steps-step {
    z-index: 1;
    position: relative;
    text-align: center;
}

.steps-step p {
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
}

.steps-step
