/* Custom Styles & Utility Classes */

/* Hiệu ứng giấy */
.bg-paper {
    background-color: #f2f9f5;
    background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");
}

/* Input/Textarea Styling */
.input-field {
    @apply w-full p-3 border border-brand-green-200 rounded-lg focus:ring-brand-gold focus:border-brand-gold transition duration-200 placeholder-gray-400;
}

/* Animation Utility */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}