body {
    font-family: 'Cairo', sans-serif;
    background-color: #f0f4f8;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.stepper-item.active .step-counter {
    box-shadow: 0 0 25px rgba(1, 1, 255, 0.6);
}

.input-icon {
    transition: opacity 0.2s ease-in-out;
}

.relative:focus-within .input-icon {
    opacity: 0;
}

.modal-container {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.modal-container.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-container .modal-content {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.modal-container.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.stepper-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
