/* ===== Login Page Styles ===== */

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.login-box {
    width: 360px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.logo-box {
    margin-bottom: 20px;
}

.logo-box img {
    width: 110px;
    opacity: 0.95;
    user-select: none;
}

.system-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.error-box {
    background: #ffe5e5;
    color: #b30000;
    padding: 10px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    display: none;
}

.link {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
}

/* ===== Mobile Responsiveness ===== */

@media (max-width: 480px) {

    .login-box {
        width: 90%;
        padding: 24px;
        margin: 0 10px;
    }

    .logo-box img {
        width: 70px;
    }

    h2 {
        font-size: 20px;
    }

    .input-group input {
        font-size: 16px;
        padding: 12px;
    }

    .btn {
        font-size: 16px;
        padding: 12px;
    }

    .modal-content {
        width: 90%;
        padding: 20px;
    }
}
