html, body {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.login-bg {
    min-height: 100vh;
    background: #f5b700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}


.login-box {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(180deg, #0e0e0e, #000000);
    border-radius: 6px;
    padding: 40px 36px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 30px 80px rgba(0,0,0,0.6);
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .login-bg {
        padding: 18px;
    }

    .login-box {
        padding: 32px 24px;
        border-radius: 8px;
    }
}


.login-heading {
    text-align: center;
    color: #f5b700;
    margin-bottom: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.login-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.login-input {
    width: 100%;
    height: 42px;
    margin-bottom: 22px;
    padding: 0 12px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.95rem;
}

.login-input:focus {
    outline: none;
    background: rgba(255,255,255,0.12);
}

.login-btn {
    width: 100%;
    height: 44px;
    background: #f5b700;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: #e0a800;
}

.login-forgot {
    text-align: center;
    margin-top: 16px;
}

.login-forgot a {
    color: #cccccc;
    font-size: 0.85rem;
    text-decoration: none;
}

.login-forgot a:hover {
    text-decoration: underline;
}

#popupMsg {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 22px;
    border-radius: 4px;
    font-weight: 600;
    display: none;
    z-index: 9999;
}

.popup-success {
    background: #2ecc71;
    color: #fff;
}

.popup-error {
    background: #e74c3c;
    color: #fff;
}

.login-logo-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.login-logo {
    max-width: 150px;
    filter: brightness(0) invert(1)
            drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}
.input-icon {
    position: relative;
    margin-bottom: 22px;
}

.login-input {
    width: 100%;
    height: 44px;
    padding-left: 44px;
    padding-right: 12px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 44px;
    box-sizing: border-box;
}

.login-input:focus {
    outline: none;
    background: rgba(255,255,255,0.12);
}

