login.css 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. body {
  6. display: -ms-flexbox;
  7. display: -webkit-box;
  8. display: flex;
  9. -ms-flex-align: center;
  10. -ms-flex-pack: center;
  11. -webkit-box-align: center;
  12. align-items: center;
  13. -webkit-box-pack: center;
  14. justify-content: center;
  15. padding-top: 40px;
  16. padding-bottom: 40px;
  17. background-color: #f5f5f5;
  18. }
  19. .form-signin {
  20. width: 100%;
  21. max-width: 330px;
  22. padding: 15px;
  23. margin: 0 auto;
  24. }
  25. .form-signin .checkbox {
  26. font-weight: 400;
  27. }
  28. .form-signin .form-control {
  29. position: relative;
  30. box-sizing: border-box;
  31. height: auto;
  32. padding: 10px;
  33. font-size: 16px;
  34. }
  35. .form-signin .form-control:focus {
  36. z-index: 2;
  37. }
  38. .form-signin input[type="email"] {
  39. margin-bottom: -1px;
  40. border-bottom-right-radius: 0;
  41. border-bottom-left-radius: 0;
  42. }
  43. .form-signin input[type="password"] {
  44. margin-bottom: 10px;
  45. border-top-left-radius: 0;
  46. border-top-right-radius: 0;
  47. }