/* Page Load Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 0;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for form fields */
.rz-form-field {
    animation: fadeInUp 0.5s ease-out backwards;
}

.rz-form-field:nth-child(1) {
    animation-delay: 0.1s;
}

.rz-form-field:nth-child(2) {
    animation-delay: 0.2s;
}

.rz-form-field:nth-child(3) {
    animation-delay: 0.3s;
}

.rz-form-field:nth-child(4) {
    animation-delay: 0.4s;
}

.rz-form-field:nth-child(5) {
    animation-delay: 0.5s;
}

/* Header animation */
.page-header {
    text-align: center;
    padding: 2rem 0 1.5rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 168, 204, 0.05) 100%);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    animation: fadeInUp 0.4s ease-out;
}

/* Progress bar animation */
.progress-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: transparent !important;
    max-height: 80px;
    animation: fadeInUp 0.5s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
}

/* Button animation */
.rz-stack:has(.rz-button) {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: backwards;
}