1234567891011121314151617181920212223242526272829303132333435 |
- input[type=text]:focus {
- background-color: #e6e6e6;
- cursor: pointer;
- }
- button {
- background-color: #e6e6e6;
- border-radius: 5px;
- border: 1px solid black;
- color: black;
- padding: 8px 50px;
- text-decoration: none;
- cursor: pointer;
- }
- .center__form {
- display: flex;
- justify-content: center;
- padding: 150px;
- }
- .h4__form {
- padding: 0 250px 0 0;
- }
- .button__center {
- display: flex;
- justify-content: center;
- }
- .pq {
- display: flex;
- justify-content: space-between;
- max-width: 215px;
- }
|