style.css 618 B

123456789101112131415161718192021222324252627282930313233343536
  1. .allWindow {
  2. width: 100vw;
  3. height: 100vh;
  4. background-color: #c0c0c0;
  5. display: flex;
  6. flex-wrap: wrap;
  7. justify-content: center;
  8. align-items: center;
  9. }
  10. .formaLogin {
  11. background-color: #d0e8ff;
  12. box-shadow: 10px 10px 20px 3px #202020;
  13. display: flex;
  14. flex-wrap: wrap;
  15. text-align: center;
  16. border-radius: 4px;
  17. border: 2px solid #404040;
  18. }
  19. .formaLogin :nth-child(n) {
  20. margin: 5px;
  21. }
  22. input[type='text'],
  23. input[type='password'] {
  24. width: 300px;
  25. height: 40px;
  26. font-size: 18px;
  27. margin-bottom: 25px;
  28. border-radius: 4px;
  29. padding-left: 10px;
  30. }
  31. .buttons :nth-child(n) {
  32. font-size: 18px;
  33. }