/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* BACKGROUND */
.bg-img {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* CARD IMAGES */
.card-img {
    position: fixed;
    width: 260px;
    z-index: -2;
}

/* LEFT CARD */
.left-card {
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
}

/* RIGHT CARD */
.right-card {
    right: 12.5%;
    top: 50%;
    transform: translateY(-50%);
}

/* CENTER WRAPPER */
.main-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGIN CARD */
.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* ========================= */
/*  HEADER FIX (IMPORTANT) */
/* ========================= */

.text-center img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ZIGPE LOGO */
.zigpe-logo {
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* ADMIN PORTAL IMAGE */
.admin-title-img {
    height: 32px;
    object-fit: contain;
    margin-bottom: 4px;
}

/* SUB TEXT */
.title-sub {
    font-size: 14px;
    color: #6B7280;
}

/* LABEL */
.label-text {
    font-size: 13px;
    color: #374151;
}

/* INPUT */
.input-box {
    background: #e6efff;
    border-radius: 10px;
    border: none;
    height: 45px;
}
.toggle-password {
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
    z-index: 10;
}

/* BUTTON */
.btn-login {
    background: #1e2f5c;
    color: #fff;
    height: 45px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: #2a3f7a;
    /* lighter hover */
    color: #fff;
    /* keep text white */
}

/* ========================= */
/* 🔥 RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .card-img {
        width: 180px;
        opacity: 0.6;
    }

}

@media (max-width: 768px) {

    .card-img {
        display: none;
        /* hide cards on mobile */
    }

    .login-card {
        padding: 25px;
    }

}

@media (max-width: 480px) {

    .login-card {
        padding: 20px;
    }

}