login.css 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. * {
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body {
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. height: 70vh;
  11. }
  12. .login-wrap {
  13. margin: 0 auto;
  14. max-width: 350px;
  15. padding: 15px;
  16. width: 100%;
  17. position: relative;
  18. height: 300px;
  19. }
  20. .logo {
  21. margin: 30px auto 70px;
  22. display: block;
  23. text-align: center;
  24. }
  25. .form {
  26. padding-top: 20px;
  27. }
  28. button {
  29. width: 100%;
  30. height: 40px;
  31. }
  32. a {
  33. font-size: 14px;
  34. color: #a13bb6;
  35. }
  36. a span {
  37. color: unset !important;
  38. }
  39. button:hover {
  40. box-shadow: 1px 1px 5px #555;
  41. }
  42. button:active {
  43. box-shadow: 1px 1px 7px #222;
  44. }
  45. .acciones button {
  46. margin: 15px 0 0 !important;
  47. }
  48. .form-group {
  49. margin: 0;
  50. }
  51. .hello {
  52. text-align: center;
  53. margin: 15px 0 0;
  54. }
  55. .step {
  56. height: 200px;
  57. }
  58. label {
  59. display: none;
  60. }