style.css 716 B

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