body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #e4e9f2);
}

.login-wrapper {
    min-height: 100vh;
}

.left-section {
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
}

.logo-image {
    position: absolute;
    top: 20%;
    left: 30.5%;
    transform: translateX(-33%);
    text-align: center;
    max-width: 180px;
}

.login-card {
    max-width: 350px !important;
    width: 100%;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-toggle:hover {
    color: #0d6efd;
}

/* HIDE validation text */
.invalid-feedback,
.valid-feedback {
    display: none !important;
}

/* INVALID: border merah tanpa icon */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none !important;
}

/* VALID: border normal tanpa icon */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #ced4da; /* default bootstrap border */
    background-image: none !important;
}

.btn-google {
    background-color: #fff;
    border: 1px solid #ddd !important;
}

.btn-google:hover{
    background-color: #0b5ed7;
    color: #fff !important;
    border: 1px solid #0b5ed7 !important;
}

.btn-google img {
    width: 18px;
    margin-right: 8px;
}

@media (max-width: 767.98px) {
    body {
        background-image: url("../images/background.jpg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width: 100%;
        min-height: 50vh;
    }
    
    .logo-image-mobile {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 180px;
        width: 50%;
        display: block;
        margin-bottom: 20px;
    }

    .container-fluid, .row {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .login-card {
        margin: 20px;
        max-width: 380px !important;
    }

    /* .g-recaptcha {
        margin: auto !important;
        transform-origin: 0 0; 
        transform: scale(0.925);
    } */
}