ClientForm.css 332 B

12345678910111213141516171819202122232425262728
  1. .custom_input {
  2. box-sizing: border-box;
  3. width: 60%;
  4. padding: 0 20px;
  5. line-height: 38px;
  6. font-size: 14px;
  7. height: 40px;
  8. color: #000;
  9. background: white;
  10. text-align: left;
  11. }
  12. .custom_input:focus {
  13. border:1px solid #000;
  14. }
  15. .client_info {
  16. margin-top:10px;
  17. font-size: 16px;
  18. text-align: right;
  19. }
  20. .required {
  21. color:red;
  22. }