style.css 511 B

1234567891011121314151617181920212223242526272829303132333435
  1. input[type=text]:focus {
  2. background-color: #e6e6e6;
  3. cursor: pointer;
  4. }
  5. button {
  6. background-color: #e6e6e6;
  7. border-radius: 5px;
  8. border: 1px solid black;
  9. color: black;
  10. padding: 8px 50px;
  11. text-decoration: none;
  12. cursor: pointer;
  13. }
  14. .center__form {
  15. display: flex;
  16. justify-content: center;
  17. padding: 150px;
  18. }
  19. .h4__form {
  20. padding: 0 250px 0 0;
  21. }
  22. .button__center {
  23. display: flex;
  24. justify-content: center;
  25. }
  26. .pq {
  27. display: flex;
  28. justify-content: space-between;
  29. max-width: 215px;
  30. }