styles.css 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. body {
  2. font-family: Arial, sans-serif;
  3. background-color: #f4f4f4;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. height: 100vh;
  8. margin: 0;
  9. }
  10. .container {
  11. background: white;
  12. padding: 20px;
  13. border-radius: 8px;
  14. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  15. width: 300px;
  16. }
  17. h1 {
  18. text-align: center;
  19. margin-bottom: 20px;
  20. }
  21. .form-group {
  22. margin-bottom: 15px;
  23. }
  24. label {
  25. display: block;
  26. margin-bottom: 5px;
  27. }
  28. input[type="text"],
  29. input[type="email"],
  30. input[type="file"] {
  31. width: 100%;
  32. padding: 8px;
  33. box-sizing: border-box;
  34. }
  35. button {
  36. width: 100%;
  37. padding: 10px;
  38. background-color: #28a745;
  39. color: white;
  40. border: none;
  41. cursor: pointer;
  42. font-size: 16px;
  43. }
  44. button:hover {
  45. background-color: #218838;
  46. }
  47. #message {
  48. margin-top: 15px;
  49. color: red;
  50. }