12345678910111213141516171819202122232425262728 |
- .custom_input {
- box-sizing: border-box;
- width: 60%;
- padding: 0 20px;
- line-height: 38px;
- font-size: 14px;
- height: 40px;
- color: #000;
- background: white;
- text-align: left;
- }
- .custom_input:focus {
- border:1px solid #000;
- }
- .client_info {
- margin-top:10px;
- font-size: 16px;
- text-align: right;
- }
- .required {
- color:red;
- }
|