/* ============================================================
   GLOBALNE USTAWIENIA STRONY
   ============================================================ */

body.login-body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* USUŃ STĄD WSZYSTKIE BACKGROUND I ANIMACJE */
}

/* Dodaj nowy kontener dla tła */
.body-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10; /* Na samym dole */
}

/* ============================================================
   KONTENER CENTRALNY
   ============================================================ */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* ============================================================
   KARTA LOGOWANIA (GLASSMORPHISM)
   ============================================================ */
.login-card {
    width: 340px;
    padding: 32px;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(200, 200, 200, 0.55);
    border-radius: 12px;

    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}


/* ============================================================
   TYTUŁ + PODTYTUŁ
   ============================================================ */
.product-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1c1c1e;
}

.product-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: #555;
}


/* ============================================================
   INPUTY (LOGIN / PASSWORD)
   ============================================================ */
.input-field {
    width: 100%;
    padding: 10px 12px;
    margin-top: 14px;

    border: 1px solid #c7c7cc;
    border-radius: 6px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;

    background: #fff;
    outline: none;
    box-sizing: border-box;
}

.input-field:focus {
    border-color: #0a84ff;
    box-shadow: 0 0 0 3px rgba(10,132,255,0.2);
}





/* ============================================================
   STATUS LINE (INFORMACJE O AUTORYZACJI)
   ============================================================ */
.status-line {
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #444;
    opacity: 0.9;
    text-align: center;
}




