_auth.scss 650 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* Auth */
  2. .auth {
  3. .auth-form-light {
  4. background: $white;
  5. select {
  6. color: $input-placeholder-color;
  7. }
  8. .input-group {
  9. .form-control {
  10. &:focus,
  11. &:active {
  12. border-color: $border-color;
  13. }
  14. }
  15. }
  16. }
  17. .brand-logo {
  18. margin-bottom: 2rem;
  19. img {
  20. width: 150px;
  21. }
  22. }
  23. form {
  24. .form-group {
  25. margin-bottom: 1.5rem;
  26. label {
  27. font-size: .8125rem;
  28. }
  29. .form-control {
  30. background: transparent;
  31. border-radius: 0;
  32. font-size: .9375rem;
  33. }
  34. }
  35. .auth-form-btn {
  36. height: 50px;
  37. line-height: 1.5;
  38. }
  39. .auth-link {
  40. font-size: $default-font-size;
  41. &:hover {
  42. color: initial;
  43. }
  44. }
  45. }
  46. }