@media (max-width: 992px) {
    div.nomobile{
         display: none;
      }
}



        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
        
            font-family: "Trebuchet MS", sans-serif;
        }

        body {
            background-color: #f4f5f7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Nowy ciemny pasek górny wzorowany na zdjęciu */
        .top-header-bar {
            /* background-color: #2a2c33; Ciemnografitowe tło */
            color: #ffffff;
            padding: 12px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            line-height: 1.5;
            border-bottom: 1px solid #1a1b20;
        }

        /* Dane firmy po lewej stronie */
        
        .company-details {
            /*max-width: 60%;*/
            font-size: 14px;
            display: block;
            margin-bottom: 2px;
        }

     .company-details  a {
            color: #ffffff; /* Biały tekst menu na ciemnym tle */
        }
        
         .company-details  a:hover {
         color: #ffffff;
         }
         
         
        .company-details strong {
            font-size: 14px;
            display: block;
            margin-bottom: 2px;
        }

        .company-details span.highlight {
            color: #d32f2f; /* Czerwone wyróżnienia kontaktowe */
        }

        /* Górne menu nawigacyjne przeniesione na ciemne tło */
        .top-navbar   {
            font-size: 14px;
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .top-navbar   a {
            color: #ffffff; /* Biały tekst menu na ciemnym tle */
            font-size: 14px;
            text-decoration: none;
            /*font-size: 13px;
            font-weight: 500;*/
            transition: opacity 0.2s;
            opacity: 0.85;
        }

        .top-navbar   a:hover {
             color: #ffffff;
            opacity: 1;
            text-decoration: underline;
            
        }

        /* Kontener główny (jasne tło bez zmian) */
        .main-wrapper {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        /* Panel logowania bez zmian */
        .login-container {
            background-color: #ffffff;
            width: 100%;
            max-width: 420px;
            padding: 40px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #1a1a1a;
        }


        .info-container {
            background-color: #ffffff;
            width: 100%;
            
            padding: 40px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #1a1a1a;
        }
        
        
        
        .logo-area {
            text-align: center;
            margin-bottom: 30px;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 0.5px;
            color: #1a1a1a;
        }

        .logo-area span {
            color: #d32f2f;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 13px;
            color: #555555;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 10px 12px;
            font-size: 14px;
            border: 1px solid #cccccc;
            border-radius: 4px;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-group input:focus {
            border-color: #1a1a1a;
        }

        .utilities {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 13px;
        }

        .utilities a {
            color: #d32f2f;
            text-decoration: none;
        }

        .utilities a:hover {
            text-decoration: underline;
        }

        .btn-submit {
            width: 100%;
            padding: 12px;
            background-color: #1a1a1a;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-submit:hover {
            background-color: #333333;
        }

        .footer-info {
            text-align: center;
            margin-top: 30px;
            font-size: 13px;
            color: #888888;
            line-height: 1.5;
        }
        .footer-info a{
        color: #000000;
        text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: #888888;
            line-height: 1.5;
        }