/* Resetting default margin and padding */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body styling */ body { font-family: Arial, sans-serif; background-color: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; } /* Container styling */ .container { background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); padding: 40px; width: 400px; } /* Heading styling */ .container h2 { color: #333; text-align: center; margin-bottom: 20px; } /* Form styling */ .container form { display: flex; flex-direction: column; } /* Label styling */ .container form label { margin-bottom: 8px; color: #555; } /* Input styling */ .container form input[type="text"], .container form textarea { padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 5px; } /* Textarea styling */ .container form textarea { resize: none; } /* Button styling */ .container form input[type="submit"] { padding: 12px 0; border: none; background-color: #007bff; color: #fff; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; } .container form input[type="submit"]:hover { background-color: #0056b3; }