2025-12-11 17:22:26 +01:00
|
|
|
@import "tailwindcss";
|
2026-01-15 18:51:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
label {
|
|
|
|
|
color: white !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-fadeIn { animation: fadeIn 0.3s ease-in-out; }
|
|
|
|
|
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
|