passwordReset.css 550 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. .email{
  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. width: 350px;
  28. }
  29. .email{
  30. font-size: 25px;
  31. }
  32. .button{
  33. font-size: 20px;
  34. }
  35. }