/* Shared auth page styling */
body {
    background-color: #f4f7f6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}

.form-element-animation {
    animation: slideInUp 0.7s ease-in-out forwards;
    opacity: 0;
}

.form-element-animation:nth-child(1) { animation-delay: 0.2s; }
.form-element-animation:nth-child(2) { animation-delay: 0.3s; }
.form-element-animation:nth-child(3) { animation-delay: 0.4s; }
.form-element-animation:nth-child(4) { animation-delay: 0.5s; }
.form-element-animation:nth-child(5) { animation-delay: 0.6s; }
.form-element-animation:nth-child(6) { animation-delay: 0.7s; }
.form-element-animation:nth-child(7) { animation-delay: 0.8s; }
.form-element-animation:nth-child(8) { animation-delay: 0.9s; }

.form-control {
    border-radius: 0.5rem;
    padding: 1.25rem 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.15);
}

.form-floating > label {
    padding: 1.25rem 1rem;
}

.social-login-buttons a {
    transition: all 0.3s ease;
}

.social-login-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gradient-showcase-img {
    max-width: 75%;
    opacity: 0.9;
    animation: fadeIn 1.2s ease-in-out;
}
