body { | |
font-family: Arial, sans-serif; | |
max-width: 600px; | |
margin: 50px auto; | |
padding: 20px; | |
background-color: #f9f9f9; | |
border-radius: 8px; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
} | |
input, textarea { | |
width: 100%; | |
padding: 8px; | |
margin: 5px 0 15px; | |
border: 1px solid #ccc; | |
border-radius: 4px; | |
} | |
button { | |
padding: 10px 20px; | |
background-color: #4CAF50; | |
color: white; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
} | |
button:hover { | |
background-color: #45a049; | |
} | |