body {
    padding: 0px;
    margin: 0px;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

* {
    -webkit-tap-highlight-color: transparent;
}

.bg-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@font-face {
    font-family: 'fa-regular-400';
    src: url('/public/static/apps/site6/fa-regular-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'fa-solid-900';
    src: url('/static/fonts/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.top-left-warp {
    filter: blur(110px) brightness(1.02) drop-shadow(0 0 110px rgba(0, 242, 234, 0.16));
    background-color: rgba(0, 242, 234, 0.16);
    border-radius: 9999px;
    animation: float 6s ease-in-out infinite;
    width: 24rem;
    height: 24rem;
    top: -10%;
    left: -10%;
    position: absolute;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(10px);
    }
}

.bottom-right-warp {
    filter: blur(110px) brightness(1.02) drop-shadow(0 0 110px rgb(255 0 80 / 0.16));
    background-color: rgb(255 0 80 / 0.2);
    border-radius: 9999px;
    animation: float 6s ease-in-out infinite;
    width: 24rem;
    height: 24rem;
    bottom: -10%;
    right: -10%;
    position: absolute;
}

.login-box {
    margin: 0 auto;
    position: relative;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    width: 90%;
}

.login-box .fa {
    font-family: "Font Awesome 6 Free", "fa-solid-900", "fa-regular-400";
    font-style: normal;
    font-weight: 900;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-box .fa-phone:before {
    content: "\f007";
}

.login-box .fa-passwd:before {
    content: "\f023";
}

.logo-box {
    text-align: center;
}

.logo-box .logo-img {
    width: 6rem;
    height: 6rem;
}

.logo-box .logo-text {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    letter-spacing: 0.05em;
    font-style: italic;
    font-weight: 900;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-top: 15px;
}

.login-form-box {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
    padding-top: 20px;
}

.login-form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.7rem;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: border-color 0.2s ease;
}

.login-form-group .left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
}

.login-form-group .right {
    flex: 1;
    padding: 0;
    margin: 0;
}

.login-form-group input {
    width: 100%;
    height: 44px;
    font-size: 0.95rem;
    color: #f0f0f0;
    border: 0;
    background: transparent;
    padding: 0 0 4px 0;
    outline: none;
}

.login-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.phone-group:focus-within {
    border-bottom-color: #3b82f6;
}

.pass-group:focus-within {
    border-bottom-color: #ff0050;
}

.login-form-button-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 18px;
    margin-bottom: 2.2rem;
    padding-left: 10px;
    padding-right: 10px;
}

.login-form-button {
    border-radius: 9999px;
    text-align: center;
    width: 100%;
    border: none;
    background: linear-gradient(90deg, #00f2ea 0%, #3b82f6 50%, #ff0050 100%);
    color: white;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    transition: transform 0.15s ease-in-out;
    transform: scale(1);
}

.login-form-button:active {
    transform: scale(0.95);
}

.login-form-tip {
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
}

a {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none !important;
    -webkit-focus-ring-color: transparent;
}

a:active,
a:focus,
a:visited,
a:hover {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-focus-ring-color: transparent;
    box-shadow: none !important;
}

.login-form-tip a {
    color: rgb(0 242 234);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent !important;
}