.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
}

.notification.success {
    background-color: #4CAF50;
    color: white;
}

.notification.error {
    background-color: #f44336;
    color: white;
}

.invalid-input {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-step:first-child {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-steps .step {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.wizard-steps .step:hover {
    opacity: 0.8;
}

.wizard-steps .step.active {
    opacity: 1;
}

.wizard-steps .step.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}