1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- * {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- }
- body {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 70vh;
- }
- .login-wrap {
- margin: 0 auto;
- max-width: 350px;
- padding: 15px;
- width: 100%;
- position: relative;
- height: 300px;
- }
- .logo {
- margin: 30px auto 70px;
- display: block;
- text-align: center;
- }
- .form {
- padding-top: 20px;
- }
- button {
- width: 100%;
- height: 40px;
- }
- a {
- font-size: 14px;
- color: #a13bb6;
- }
- a span {
- color: unset !important;
- }
- button:hover {
- box-shadow: 1px 1px 5px #555;
- }
- button:active {
- box-shadow: 1px 1px 7px #222;
- }
- .acciones button {
- margin: 15px 0 0 !important;
- }
- .form-group {
- margin: 0;
- }
- .hello {
- text-align: center;
- margin: 15px 0 0;
- }
- .step {
- height: 200px;
- }
- label {
- display: none;
- }
|