body {
    margin: 0;
    background: #020817;
    overflow-x: hidden;
}

.login-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 15%;
    position: relative;
    background:
    radial-gradient(circle at 25% 90%, rgba(37, 99, 235, .32), transparent 28%),
    radial-gradient(circle at 70% 20%, rgba(59, 130, 246, .22), transparent 30%),
    linear-gradient(135deg, #030712 0%, #07133b 48%, #020617 100%);
    color: #fff;
}

.login-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(115deg, transparent 0 38%, rgba(37, 99, 235, .20) 38.3%, transparent 39%),
    linear-gradient(115deg, transparent 0 42%, rgba(37, 99, 235, .35) 42.2%, transparent 43%),
    linear-gradient(115deg, transparent 0 46%, rgba(59, 130, 246, .22) 46.2%, transparent 47%);
    pointer-events: none;
}

.login-left,
.login-card {
    position: relative;
    z-index: 2;
}

.login-left {
    width: 48%;
    max-width: 620px;
}

.login-logo-main img {
    max-width: 220px;
    margin-bottom: 70px;
}

.login-title {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.login-title span {
    color: #60a5fa;
}

.login-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, .70);
    max-width: 520px;
    line-height: 1.55;
    margin-bottom: 48px;
}

.login-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.login-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    background: rgba(37, 99, 235, .18);
    border: 1px solid rgba(96, 165, 250, .30);
    font-size: 22px;
}

.login-benefit strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 3px;
}

.login-benefit small {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.login-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    color: #0f172a;
    border-radius: 18px;
    padding: 48px 42px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .38);
}

.login-card-logo {
    text-align: center;
    margin-bottom: 16px;
}

.login-card-logo img {
    max-width: 160px;
}

.login-card-title {
    text-align: center;
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 4px;
    color: #0f172a;
}

.login-card-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 32px;
}

.form-label {
    font-size: 13px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 8px;
}

.input-group-premium {
    position: relative;
}

.input-group-premium i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    z-index: 3;
}

.input-group-premium .form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #dbe3ef;
    padding-left: 45px;
    font-size: 14px;
    box-shadow: none !important;
}

.input-group-premium .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .12) !important;
}

.forgot-link {
    font-size: 13px;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.form-check-label {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}

.btn-login-premium {
    height: 52px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .30);
}

.btn-login-premium:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, .38);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 13px;
    margin: 28px 0;
}

.login-divider::before,
.login-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #e2e8f0;
}

.btn-google {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #475569;
    font-weight: 800;
}

.btn-google:hover {
    background: #f8fafc;
}

.support-login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.support-login strong {
    color: #2563eb;
}

.login-footer {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

.alert {
    border-radius: 10px;
    border: none;
    font-size: 13px;
}

@media(max-width: 1200px) {
    .login-premium {
        padding: 40px 6%;
    }
}

@media(max-width: 992px) {
    .login-premium {
        justify-content: center;
    }

    .login-left {
        display: none;
    }

    .login-card {
        max-width: 460px;
    }
}

@media(max-width: 576px) {
    .login-premium {
        padding: 24px 14px;
    }

    .login-card {
        padding: 34px 22px;
    }
}

.password-group{
    position: relative;
}

.password-group .form-control{
    padding-right: 55px;
}

.password-toggle{
    position:absolute;
    top:50%;
    right:40px;
    transform:translateY(-50%);
    border:0;
    background:transparent;
    color:#8b95a7;
    font-size:20px;
    cursor:pointer;
    z-index:10;
    transition:.2s;
}

.password-toggle:hover{
    color:var(--bs-primary);
}