passwordReset.css 577 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. body{
  2. align-items: center;
  3. }
  4. .title{
  5. margin-top: 30px;
  6. font-size: 40px;
  7. }
  8. .form{
  9. border: none;
  10. background: none;
  11. }
  12. .formInput{
  13. font-size: 30px;
  14. margin-bottom: 15px;
  15. text-align: center;
  16. }
  17. .button{
  18. font-size: 25px;
  19. padding: 5px;
  20. }
  21. .text{
  22. font-size: 20px;
  23. text-align: center;
  24. }
  25. @media screen and (max-width: 600px){
  26. .form{
  27. max-width: 90vw;
  28. padding: 0;
  29. }
  30. .email{
  31. font-size: 25px;
  32. }
  33. .button{
  34. font-size: 20px;
  35. }
  36. }