:root {
    --kt-primary: #009ef7;
    --kt-bg-main: #ffffff;
}

/* SKALA ZOOM 90% */
html {
    font-size: 13.5px;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    height: 100%;
    background: #fff;
    overflow: hidden;
}

.login-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    align-items: stretch;
    background: #fff;
}

.login-aside {
    flex: 0 0 32%;
    background: linear-gradient(135deg, #1e1e2d 0%, #009ef7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 10;
    clip-path: ellipse(95% 100% at 0% 50%);
    margin-right: -1px;
}

.aside-content {
    color: #fff;
    max-width: 280px;
    position: relative;
    left: -20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    opacity: 0.9;
    font-weight: 500;
}

.feature-dot {
    width: 7px;
    height: 7px;
    background: #50cd89;
    border-radius: 50%;
    margin-right: 12px;
}

.login-main {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.bg-watermark {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 158, 247, 0.08);
    user-select: none;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -0.6rem;
}

.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #eff2f5;
    z-index: 10;
}

.login-title {
    font-size: 24px;
    font-weight: 900;
    color: #181c32;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.form-label {
    font-size: 10px;
    font-weight: 800;
    color: #a1a5b7;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.form-control-solid {
    background-color: #f5f8fa;
    border: 1px solid #f5f8fa;
    height: 46px;
    border-radius: 10px;
    font-weight: 600;
    padding: 0 15px;
    transition: 0.3s;
}

.form-control-solid:focus {
    background-color: #fff;
    border-color: var(--kt-primary);
    box-shadow: none;
    outline: none;
}

.captcha-box-wrapper {
    background: #fff;
    border: 1px dashed #e4e6ef;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.btn-kt-primary {
    background-color: var(--kt-primary);
    color: #fff;
    font-weight: 700;
    height: 46px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
    font-size: 14px;
}

.btn-kt-primary:hover {
    background-color: #0086d1;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 158, 247, 0.2);
}

.btn-batal {
    background-color: #f5f8fa;
    color: #7e8299;
    font-weight: 700;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 14px;
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eff2f5;
    text-align: center;
}

.footer-link {
    color: #a1a5b7;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 11px;
}

.footer-link:hover {
    color: var(--kt-primary);
}

.badge-soft-warning {
    background-color: #fff8dd;
    color: #ffc107;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .login-aside {
        display: none;
    }

    .login-card {
        box-shadow: none;
        border: none;
        padding: 20px;
    }

    .bg-watermark {
        display: none;
    }
}