style.css 497 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. body {
  2. font-family: sans-serif;
  3. margin: 0;
  4. }
  5. .all-form {
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. height: 100vh;
  10. }
  11. .form {
  12. width: 300px;
  13. font-size: 22px;
  14. }
  15. input {
  16. font-size: 15px;
  17. padding: 5px;
  18. border-radius: 5px;
  19. }
  20. #log,
  21. #pass {
  22. width: 200px;
  23. margin: 5px 0;
  24. }
  25. #btn {
  26. width: 100px;
  27. margin-left: 114px;
  28. font-size: 15px;
  29. }
  30. #btn:hover {
  31. background: blue;
  32. cursor: pointer;
  33. border: 1px solid blue;
  34. color: white;
  35. font-weight: bold;
  36. }