@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,600;1,400;1,600&display=swap'); @import "button.css"; @tailwind base; @tailwind components; @tailwind utilities; html, body, label { font-family: 'Roboto', sans-serif; } body { background-color: #F4F4F4; display: flex; flex-direction: column; min-height: 100vh; } html, body { height: 100%; /* S'assurer que la hauteur de la page prend tout l'espace disponible */ margin: 0; } main { flex-grow: 1; /* Permet au contenu principal de prendre l'espace restant */ } footer { background-color: #2a8d57; padding: 20px; text-align: center; color: white; } .star { cursor: pointer; font-size: 2rem; color: lightgray; transition: color 0.3s; } .star.text-yellow-500 { color: gold; } .bgRegisterText { color: #333333; } .bgRegister { background-color: #A3D9B1; } .btnRegister { background-color: #FF6F61; border-color: #C8504C; } .btnRegister:hover { background-color: rgb(218, 76, 93); border-color: #FF6F61; }