body { font-family: Arial, sans-serif; background-color: #f0f4f8; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .appointment-container { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; } .clock { background-color: #a3d5e1; color: #000000; padding: 20px; border-radius: 10px; width: 250px; margin-bottom: 40px; } .time { font-size: 2.5rem; font-weight: bold; } .gmt { font-size: 1.25rem; margin-top: 10px; font-style: italic; } .appointment-form { background-color: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); width: 100%; max-width: 500px; font-size: 16px; } .appointment-form h2 { font-size: 2rem; margin-bottom: 20px; color: #0abaeb; } .appointment-form .input-group { margin-bottom: 20px; } .appointment-form input, .appointment-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; color: #333; } .appointment-form input[type="date"], .appointment-form input[type="time"] { cursor: pointer; } .appointment-form button { width: 100%; padding: 12px; background-color: #3498db; color: #fff; border: none; border-radius: 5px; font-size: 18px; cursor: pointer; transition: background-color 0.3s ease; } .appointment-form button:hover { background-color: #2980b9; } .appointment-form textarea { min-height: 100px; resize: none; }