body {
    position: relative;
    background: url('../img/bg-auth.jpg') no-repeat center center;
    background-size: cover;
    margin: 0;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed; /* <--- kunci utama */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #135589;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}


/* img {
    padding-bottom: 20px !important;
} */

.container > .row {
    min-height: 80vh;
    margin: 30px 0px;
}

.card {
    display: flex;
    width: 692px;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.primary-btn:hover {
    color: var(--neutral-background);
}

.form-check-group input {
    width: 24px;
    height: 24px;
    border-radius: 4px !important;
    border: 1px solid var(--neutral-line);
    margin-right: 8px;
}

.forgot-password {
    color: var(--blue-50);
    text-align: center;
    text-decoration: none;
}

.action-link p {
    margin-right: 8px;
}

.action-link a {
    text-decoration: none;
    padding: 0px;
}



/* RESPONSIVE */
/* MOBILE */
@media (max-width: 575.98px) { 
    .form-check-group input {
        width: 18px;
        height: 18px;
    }
}