| 1 | form { |
| 2 | & input[type="text"], |
| 3 | & input[type="email"], |
| 4 | & input[type="password"], |
| 5 | & textarea { |
| 6 | width: 100%; |
| 7 | padding: 0.75rem; |
| 8 | margin-bottom: 1rem; |
| 9 | border: 1px solid var(--border-color); |
| 10 | border-radius: 0.25rem; |
| 11 | font-size: 1rem; |
| 12 | } |
| 13 | |
| 14 | & input[type="submit"] { |
| 15 | margin-top: 0.5rem; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | @media (max-width: 767px) { |
| 20 | form { |
| 21 | & input[type="text"], |
| 22 | & input[type="email"], |
| 23 | & input[type="password"], |
| 24 | & textarea { |
| 25 | padding: 0.5rem; |
| 26 | font-size: 0.9rem; |
| 27 | } |
| 28 | } |
| 29 | } |
| 30 | |