Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- font-family: 'Segoe UI', sans-serif;
- background-color: #f7f7f7;
- padding: 20px;
- }
- form {
- background-color: #ffffff;
- max-width: 600px;
- margin: 0 auto;
- padding: 25px;
- border-radius: 10px;
- box-shadow: 0 4px 12px rgba(0,0,0,0.1);
- }
- h2 {
- text-align: center;
- color: #333;
- }
- label {
- display: block;
- margin-top: 15px;
- font-weight: bold;
- }
- input[type="text"],
- input[type="email"],
- input[type="date"],
- input[type="tel"],
- textarea {
- width: 100%;
- padding: 10px;
- margin-top: 5px;
- border-radius: 5px;
- border: 1px solid #ccc;
- box-sizing: border-box;
- }
- fieldset {
- border: 1px solid #ccc;
- padding: 10px;
- border-radius: 5px;
- margin-top: 15px;
- }
- legend {
- font-weight: bold;
- color: #555;
- }
- button {
- background-color: #28a745;
- color: white;
- border: none;
- margin-top: 20px;
- padding: 12px 20px;
- border-radius: 5px;
- cursor: pointer;
- }
- button:hover {
- background-color: #218838;
- }
- @media (max-width: 600px) {
- form {
- padding: 15px;
- }
- button {
- width: 100%;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment