| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- .auth-page {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- height: 100%;
- width: 100%;
- flex-direction: column;
- .top-banner {
- position: relative;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 12px 64px;
- box-sizing: border-box;
- background: var(--second);
- .top-banner-inner {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 14px;
- line-height: 150%;
- span {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- a {
- display: inline-flex;
- align-items: center;
- text-decoration: none;
- margin-left: 8px;
- color: var(--primary);
- }
- }
- }
- .top-banner-close {
- cursor: pointer;
- position: absolute;
- top: 50%;
- right: 48px;
- transform: translateY(-50%);
- }
- }
- .auth-header {
- display: flex;
- justify-content: space-between;
- width: 100%;
- padding: 10px;
- box-sizing: border-box;
- animation: slide-in-from-top ease 0.3s;
- }
- .auth-logo {
- margin-top: 10vh;
- transform: scale(1.4);
- }
- .auth-title {
- font-size: 24px;
- font-weight: bold;
- line-height: 2;
- margin-bottom: 1vh;
- }
- .auth-tips {
- font-size: 14px;
- }
- .auth-input {
- margin: 3vh 0;
- }
- .auth-input-second {
- margin: 0 0 3vh 0;
- }
- .auth-actions {
- display: flex;
- justify-content: center;
- flex-direction: column;
- button:not(:last-child) {
- margin-bottom: 10px;
- }
- }
- }
|