File size: 543 Bytes
00b6923 d64952b 00b6923 d64952b 00b6923 d64952b 00b6923 d64952b 00b6923 d64952b 00b6923 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /* Estilos base */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
}
/* Animaciones */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Transiciones */
input, select, textarea {
transition: all 0.3s ease;
}
/* Estilos personalizados para el formulario */
#flightForm {
animation: fadeIn 0.5s ease-out;
}
/* Responsividad adicional */
@media (max-width: 640px) {
.container {
padding-left: 1rem;
padding-right: 1rem;
}
} |