jotazetaec

Untitled

May 7th, 2025
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. body {
  2. font-family: 'Segoe UI', sans-serif;
  3. background-color: #f7f7f7;
  4. padding: 20px;
  5. }
  6.  
  7. form {
  8. background-color: #ffffff;
  9. max-width: 600px;
  10. margin: 0 auto;
  11. padding: 25px;
  12. border-radius: 10px;
  13. box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  14. }
  15.  
  16. h2 {
  17. text-align: center;
  18. color: #333;
  19. }
  20.  
  21. label {
  22. display: block;
  23. margin-top: 15px;
  24. font-weight: bold;
  25. }
  26.  
  27. input[type="text"],
  28. input[type="email"],
  29. input[type="date"],
  30. input[type="tel"],
  31. textarea {
  32. width: 100%;
  33. padding: 10px;
  34. margin-top: 5px;
  35. border-radius: 5px;
  36. border: 1px solid #ccc;
  37. box-sizing: border-box;
  38. }
  39.  
  40. fieldset {
  41. border: 1px solid #ccc;
  42. padding: 10px;
  43. border-radius: 5px;
  44. margin-top: 15px;
  45. }
  46.  
  47. legend {
  48. font-weight: bold;
  49. color: #555;
  50. }
  51.  
  52. button {
  53. background-color: #28a745;
  54. color: white;
  55. border: none;
  56. margin-top: 20px;
  57. padding: 12px 20px;
  58. border-radius: 5px;
  59. cursor: pointer;
  60. }
  61.  
  62. button:hover {
  63. background-color: #218838;
  64. }
  65.  
  66. @media (max-width: 600px) {
  67. form {
  68. padding: 15px;
  69. }
  70.  
  71. button {
  72. width: 100%;
  73. }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment