/* Form Progress Bar */
.form-progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #18cbf4, #0a9fc4);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Form Step Animation */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

/* Form Input Styling */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #18cbf4;
    box-shadow: 0 0 0 3px rgba(24, 203, 244, 0.2);
}

/* Custom Radio & Checkbox */
.custom-radio {
    display: none;
}

.custom-radio + label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-radio:checked + label {
    border-color: #18cbf4;
    background-color: rgba(24, 203, 244, 0.05);
}

.custom-radio + label:hover {
    border-color: #18cbf4;
}

.custom-checkbox {
    display: none;
}

.custom-checkbox + label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox + label:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.custom-checkbox:checked + label:before {
    background-color: #18cbf4;
    border-color: #18cbf4;
    content: "✓";
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Success Message */
.success-message {
    display: none;
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

/* Form Step Indicator */
.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background-color: #18cbf4;
    color: white;
}

.step-indicator.completed {
    background-color: #10b981;
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
}

.loading-spinner.active {
    display: flex;
}
