body {
    background: linear-gradient(135deg, #eef5ff, #dcecff);
    font-family: Segoe UI, sans-serif;
    overflow: hidden
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .8
}

.left {
    width: 520px;
    height: 520px;
    left: -120px;
    bottom: -120px;
    background: linear-gradient(#7fb4ff, #1f6fff)
}

.right {
    width: 420px;
    height: 420px;
    right: -80px;
    bottom: -80px;
    background: linear-gradient(#90c2ff, #0d6efd)
}

.hero h1 {
    font-size: 68px;
    font-weight: 800;
    color: #17335f
}

.hero h1 span {
    color: #0d6efd
}

.hero p {
    color: #667
}

/* Hero brand */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.hero-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f9cff, #005eff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px
}

.hero-brand-name {
    font-size: 17px;
    font-weight: 800;
    color: #17335f;
    line-height: 1.1;
    letter-spacing: .5px
}

.hero-brand-sub {
    font-size: 11px;
    font-weight: 500;
    color: #5a7db5;
    letter-spacing: 2.5px
}

.hero-desc {
    color: #667;
    max-width: 360px
}

.hero-divider {
    width: 48px;
    height: 3px;
    background: #0d6efd;
    border-radius: 2px;
    margin: 14px 0 24px
}

.feature {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 20px 0
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(13, 110, 253, .12);
    flex-shrink: 0
}

.feature-icon-wrap i {
    color: #0d6efd;
    font-size: 20px
}

/* Dashboard mockup */
.dash-mockup {
    background: rgba(255, 255, 255, .72);
    border-radius: 20px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(13, 110, 253, .1);
    display: flex;
    align-items: center;
    gap: 20px
}

.dash-chart-area {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px
}

.dash-chart-line {
    flex: 1;
    height: 64px
}

.dash-chart-line svg {
    width: 100%;
    height: 100%
}

.dash-donut {
    width: 54px;
    height: 54px;
    flex-shrink: 0
}

.dash-donut svg {
    width: 100%;
    height: 100%
}

.dash-revenue-card {
    background: linear-gradient(135deg, #4f9cff, #005eff);
    border-radius: 14px;
    padding: 12px 16px;
    color: #fff;
    min-width: 148px
}

.dash-revenue-label {
    font-size: 11px;
    opacity: .82;
    margin-bottom: 4px
}

.dash-revenue-amount {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px
}

.dash-revenue-growth {
    font-size: 11px;
    opacity: .9
}

.login-card {
    width: 620px;
    border: none;
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(30, 90, 200, .18)
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(#5aa0ff, #0d6efd);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    font-weight: 700
}

.input-group-text,
.form-control {
    height: 58px;
    border: 1px solid #d7e5ff
}

.btn-primary {
    background: linear-gradient(90deg, #4f9cff, #005eff);
    border: none;
    border-radius: 14px;
    font-weight: 700
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 620px
}

.login-footer {
    width: 100%;
    background: rgba(240, 245, 255, .85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border-bottom: 3px solid #0d6efd;
    text-align: center;
    padding: 18px 24px;
    margin-top: 14px;
    box-shadow: 0 4px 20px rgba(13, 110, 253, .08)
}

.login-footer-security {
    color: #0d6efd;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px
}

.login-footer-security i {
    margin-right: 6px
}

.login-footer-copy {
    color: #8899aa;
    font-size: 13px
}

@media(max-width:992px) {
    .login-card,
    .login-wrapper {
        width: 95%
    }

    body {
        overflow: auto
    }
}