123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .login-page {
- height: 100%;
- background: linear-gradient(#fff, #e6f7ff);
-
- #particles-js {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
-
- .login-page-container {
- height: 100%;
- display: grid;
- place-items: center;
- position: relative;
- z-index: 10;
- }
-
- .login-card {
- width: 900px;
- height: 600px;
- border-radius: 8px;
- overflow: hidden;
- backdrop-filter: blur(6px);
- box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
-
- display: grid;
- grid-template-columns: 1fr 1fr;
- }
-
- .login-card-left {
- background: rgba(255, 255, 255, 0.45);
- }
- .login-card-right {
- // background: #EFF6FA;
- }
-
- .login-form-box {
- height: 560px;
- display: grid;
- place-items: center;
-
- .login-form {
- min-width: 280px;
- .login-text {
- font-weight: 700;
- }
- }
-
- .login-subtitle {
- font-size: 0.9em;
- color: #666;
- margin-bottom: 24px;
- letter-spacing: 2px;
- }
- }
-
- .login-effect-box {
- height: 100%;
- display: grid;
- place-items: center;
-
- .login-effect {
- width: 180px;
- height: 180px;
- position: relative;
- }
-
- .login-effect-arc {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- background-color: #fa8c16;
-
- &::after {
- content: '';
- width: 200%;
- height: 100%;
- top: 50%;
- left: -50%;
- position: absolute;
- z-index: 10;
- background-color: rgba(255, 255, 255, 0.001);
- backdrop-filter: blur(16px);
- border-top: 1px solid rgba(255, 255, 255, 0.2);
- }
- }
- }
-
- .login-copyright {
- font-size: 12px;
- color: #666;
- line-height: 40px;
- padding-left: 20px;
- box-sizing: border-box;
- }
- }
|