    body {
        background-color: #f4f7f6;
        font-family: "Outfit", sans-serif;
        margin: 0;
        padding: 0;
    }

    .login-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    /* Sisi Gambar */
    .login-side-image {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/cover/BRAVEN2.jpg') !important;
        background-size: cover;
        background-position: left;
        width: 50%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 50px;
        color: white;
    }

    /* Sisi Form */
    .login-side-form {
        width: 50%;
    }

    .login-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .login-brand-new {
        margin-bottom: 40px;
    }

    .login-brand-new img {
        width: 80px;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    }

    h3 {
        font-weight: 800;
        letter-spacing: -1px;
        color: #212529;
        margin-bottom: 10px;
    }

    .form-control {
        height: 50px;
        border-radius: 8px !important;
        border: 1.5px solid #eee;
        padding: 10px 20px;
        transition: all 0.3s;
    }

    .form-control:focus {
        border-color: #ffc107;
        box-shadow: none;
    }

    .btn-login-premium {
        height: 50px;
        background: #212529;
        color: #fff;
        border: none;
        border-radius: 8px !important;
        font-weight: 700;
        letter-spacing: 1px;
        width: 100%;
        transition: 0.3s;
    }

    .btn-login-premium:hover {
        background: #ffc107;
        color: #000;
        transform: translateY(-3px);
    }

    @media (max-width: 992px) {
        .login-side-image {
            display: none;
        }

        .login-side-form {
            width: 100%;
            padding: 40px 20px;
        }
    }