body {
    font-family: 'Poppins', sans-serif;
    background: #f0f4f8;
}

.login-card {
    width: min(960px, 96vw);
    min-height: 580px;
    animation: cardMuncul .6s ease both;
}


.brand-side {
    flex: 0 0 44%;
    background: linear-gradient(145deg, #1ec6e6 0%, #0baac8 100%);
}

.brand-side::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    width: 28px;
    height: 100%;
    background: #fff;
    clip-path: ellipse(28px 50% at 100% 50%);
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

.brand-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .25s;
}

.brand-icon:hover {
    transform: translateY(-4px) rotate(-4deg);
}

.brand-name {
    font-size: 2.6rem;
    letter-spacing: 3px;
}

.brand-tagline {
    font-size: .92rem;
    max-width: 230px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 16px;
    padding: .85rem 1.1rem;
    min-width: 72px;
    transition: transform .25s, background .25s;
    color: #fff;
}

.stat-card:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-3px);
}

.stat-num {
    font-size: 1.25rem;
}

.stat-lbl {
    font-size: .72rem;
    opacity: .75;
}

.form-side {
    flex: 1;
    background: #fff;
}

.logo-pill {
    background: #e8f8fd;
    border: 1px solid #a8e8f5;
    border-radius: 100px;
    padding: .35rem .9rem;
    font-size: .82rem;
    font-weight: 700;
    color: #0baac8;
    width: fit-content;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #1ec6e6;
    border-radius: 50%;
    animation: kedip 2s ease-in-out infinite;
}

.field-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #374151;
}

.login-input {
    height: 52px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding-right: 3rem;
    font-family: inherit;
    font-size: .95rem;
    color: #111827;
}

.login-input:focus {
    background: #fff;
    border-color: #1ec6e6;
    box-shadow: 0 0 0 4px rgba(30, 198, 230, .10);
}

.field-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
    transition: color .25s;
}

.toggle-pw {
    pointer-events: all;
    cursor: pointer;
}

.login-input:focus~.field-icon {
    color: #1ec6e6;
}

.forgot-link {
    font-size: .85rem;
    font-weight: 600;
    color: #1ec6e6;
    text-decoration: none;
}

.forgot-link:hover {
    color: #0baac8;
    text-decoration: underline;
}

.error-box {
    background: #fff2f2;
    border: 1px solid #ffd0d0;
    border-left: 3px solid #e53e3e;
    border-radius: 10px;
    padding: .75rem 1rem;
    font-size: .875rem;
    color: #c53030;
}

.btn-login {
    height: 54px;
    background: linear-gradient(90deg, #1ec6e6 0%, #0baac8 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 10px;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 6px 24px rgba(30, 198, 230, .30);
}

.btn-login:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30, 198, 230, .40);
}

.btn-login:active {
    transform: translateY(0);
}

@keyframes cardMuncul {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes kedip {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .6;
    }
}

@media (max-width: 700px) {
    .login-card {
        flex-direction: column;
        min-height: auto;
        width: 100%;
    }

    .brand-side {
        flex: none;
        padding: 2.5rem 2rem;
    }

    .brand-side::after {
        display: none;
    }

    .form-side {
        padding: 2.5rem 1.75rem !important;
    }

    h1 {
        font-size: 1.6rem;
    }
}