/* Style the signup button */ #signupButton { background-color: #EEDFDE; /* Light cream */ color: #8c9384; /* Muted olive green text */ border: 2px solid #8c9384; padding: 12px 24px; font-size: 16px; font-weight: bold; border-radius: 5px; cursor: pointer; text-transform: uppercase; transition: all 0.3s ease; } /* Hover effect */ #signupButton:hover { background-color: #8c9384; /* Olive green background */ color: #EEDFDE; /* Light cream text */ border-color: #EEDFDE; }