* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            height: 100vh;
            display: flex;
            overflow: hidden;
        }

        /* LEFT IMAGE */
        .login-image{
    width:50%;
    background-image: url('../assets/images/login.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}


        /* RIGHT LOGIN */
        .login-container {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
        }

        .login-box {
            width: 360px;
            text-align: center;
        }

        .login-box h2 {
            color: #c86b00;
            margin-bottom: 15px;
        }

        .logo-img {
            width: 120px;
            margin-bottom: 25px;
        }

        /* ================= ALERT / NOTIFIKASI ================= */

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeSlide 0.3s ease;
}

/* ERROR */
.alert-danger {
    background: #fff1f1;
    border: 1px solid #f5c2c2;
    color: #b42318;
}

/* INFO */
.alert-info {
    background: #f0f7ff;
    border: 1px solid #cfe2ff;
    color: #084298;
}

/* SUCCESS */
.alert-success {
    background: #ecfdf3;
    border: 1px solid #b7ebc6;
    color: #0f5132;
}

/* ANIMASI HALUS */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        .input-group {
            position: relative;
            margin-bottom: 18px;
        }

        .input-group input {
            width: 100%;
            padding: 12px 40px 12px 40px;
            border-radius: 10px;
            border: 1px solid #ccc;
            outline: none;
            font-size: 14px;
        }

        .input-group i {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .input-group .fa-user,
        .input-group .fa-lock {
            left: 15px;
        }

        .btn-login {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: none;
            background-color: #c86b00;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-login:hover {
            background-color: #a85700;
        }

        .register {
            margin-top: 20px;
            font-size: 13px;
        }

        .register a {
            color: #c86b00;
            text-decoration: none;
            font-weight: 500;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .login-image {
                display: none;
            }

            .login-container {
                width: 100%;
                height: 100vh;
            }
        }

/* LOGO MODAL */
.modal-logo {
    width: 100px;
    margin-bottom: 0px;
}

/* INPUT DI MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    width: 320px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* BUTTON GROUP (SEJAJAR) */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* BUTTON FULL (STEP 3) */
.btn-green.full {
    width: 100%;
    margin-top: 10px;
}

/* PERBAIKI BUTTON */
.btn-green {
    background: #056A28;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 5px;
}

.btn-red {
    margin-top: 5px;
    background: #DB2C00;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.modal-input {
    margin-top: 10px;
}

.modal-input input {
    width: 100%;
    padding: 12px 15px 12px 40px; 
    border-radius: 10px;
    border: 1px solid #ccc;
}

.modal-input i {
    left: 12px;
}
.lupa-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 15px;
}

.lupa-password a {
    font-size: 13px;
    color: #c86b00; 
    text-decoration: none;
    font-weight: 500;
}

.lupa-pswd {
    background: none;
    border: none;
    color: #c86b00;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}
/* ===== RESET PASSWORD ONLY ===== */
.reset-title {
    margin: 10px 0 15px;
    font-size: 20px;
    font-weight: 600;
}

/* INPUT */
.reset-group {
    margin-bottom: 12px;
}

.reset-group input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* BUTTON (TIDAK FULL) */
.reset-btn {
    width: 60%;          /* 🔥 tidak full */
    margin: 12px auto 0; /* 🔥 tengah */
    display: block;
    padding: 10px;
    border-radius: 12px;
}
.toggle-password {
    right: 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
input[type="password"]::-ms-reveal {
    display: none;
}
/* PASSWORD GROUP (RESET MODAL) */
.password-group {
    position: relative;
}

/* ICON EYE UNTUK RESET PASSWORD */
.toggle-new-pass,
.toggle-confirm-pass {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 14px;
}