
body {
    font-family: 'Inter', sans-serif;
    background: #eef2f7;
}

/* WRAPPER */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* BOX */
.login-box {
    width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    animation: fadeUp 0.8s ease;
    transition: all 0.4s ease;
}

.login-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* glow */
.login-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(42,82,152,0.15);
    z-index: -1;
}

/* LEFT */
.left {
    width: 50%;
    background: url('../../rf-img/apalkes.webp') center/cover no-repeat;
    position: relative;
    color: white;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

/* overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* text kiri */
.left-content {
    position: relative;
    padding: 40px;
    z-index: 2;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.left h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.left p {
    font-size: 14px;
    opacity: 0.9;
}

/* RIGHT */
.right {
    width: 50%;
    background: white;
    padding: 40px;
}

/* BRAND */
.brand span {
    font-weight: 600;
    color: #2a5298;
    font-size: 18px;
}

/* INPUT */
.form-control {
    border-radius: 10px;
    height: 45px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42,82,152,0.15);
}

/* BUTTON */
.btn-login {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    border-radius: 10px;
    height: 45px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42,82,152,0.3);
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .login-box {
        width: 100%;
        flex-direction: column;
    }

    .left {
        width: 100%;
        height: 200px;
    }

    .right {
        width: 100%;
        padding: 30px;
    }

    .left-content {
        padding: 20px;
    }

    .left h2 {
        font-size: 20px;
    }
}