style.css 513 B

12345678910111213141516171819202122232425262728293031
  1. form {
  2. margin: 0 auto;
  3. display: flex;
  4. max-width: 800px;
  5. justify-content: center;
  6. flex-direction: column;
  7. }
  8. .form__row {
  9. display: flex;
  10. flex-direction: row;
  11. align-items: center;
  12. justify-content: space-between;
  13. }
  14. .form__item {
  15. padding: 50px;
  16. flex: 1 1 50%;
  17. }
  18. input, select {
  19. width: 100%;
  20. padding: 10px 20px;
  21. font-size: 16px;
  22. text-align: center;
  23. }
  24. h1 {
  25. width: 100%;
  26. font-family: sans-serif;
  27. text-align: center;
  28. }
  29. label{
  30. line-height: 160%;
  31. }