| body { |
| font-family: Arial, sans-serif; |
| background-color: #f5f5f5; |
| padding: 20px; |
| } |
|
|
| .container { |
| background-color: white; |
| padding: 20px; |
| border-radius: 8px; |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
| max-width: 600px; |
| margin: auto; |
| } |
|
|
| textarea { |
| width: 100%; |
| padding: 10px; |
| border-radius: 5px; |
| border: 1px solid #ccc; |
| } |
|
|
| input[type="submit"] { |
| padding: 10px 20px; |
| border-radius: 5px; |
| background-color: #007BFF; |
| color: white; |
| border: none; |
| cursor: pointer; |
| } |
|
|
| input[type="submit"]:hover { |
| background-color: #0056b3; |
| } |
|
|