/* Animation d'apparition douce */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Style des champs du formulaire */
.input-style {
    width: 100%;
    padding: 12px 16px;
    background-color: #f8fafc; /* Slate 50 */
    border: 1px solid #e2e8f0; /* Slate 200 */
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s ease-in-out;
    color: #334155;
}

.input-style:focus {
    background-color: #ffffff;
    border-color: #3b82f6; /* Brand Blue */
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-style::placeholder {
    color: #94a3b8;
}