.content { padding: 40px 20px; max-width: 800px; margin: 0 auto; } .content h3 { text-align: center; } .content form { display: flex; flex-direction: column; gap: 15px; } .content form label { font-weight: bold; } .content form input, .content form textarea, .content form button { padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem; } .content form textarea { resize: vertical; height: 100px; } .content form button { background-color: #00416A; color: white; border: none; cursor: pointer; } .content form button:hover { background-color: #62b9d1; }