| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .vertical-align-wrap {
- position: absolute;
- width: 100%;
- height: 100%;
- display: table;
- }
- .vertical-align-middle {
- display: table-cell;
- vertical-align: middle;
- }
- .auth-box {
- width: 450px;
- height: auto;
- margin-left: 115px;
- .card {
- padding: 25px;
- }
- }
- .top {
- height: 110px;
- img {
- width: 100%;
- max-width: 380px;
- }
- }
- .auth-main::before {
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 500px;
- height: 100%;
- z-index: -1;
- background: #f0f0f0;
- }
- .auth-main:after {
- content: "";
- position: absolute;
- right: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: -2;
- background: #0b4583;
- //background: url(../../assets/images/auth_bg.jpg) no-repeat top left fixed;
- }
- .card {
- background: #fff;
- transition: 0.5s;
- border: 0;
- margin-bottom: 30px;
- border-radius: 0.55rem;
- position: relative;
- width: 100%;
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
- }
- @media screen and (max-width: 640px) {
- .auth-box {
- width: 90%;
- }
- .top {
- img {
- width: 100%;
- max-width: 300px;
- }
- }
- }
- @media screen and (max-width: 992px) {
- .auth-box {
- width: 80%;
- margin: 0 auto;
- }
- }
|