        /* Dodatkowe style specyficzne dla strony logowania */
        .login-container {
            max-width: 468px;
            margin: 4px auto;
            padding: 24px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 1.5px 7px rgba(37,39,42,0.06);
            border: 1.5px solid #caccce;
        }
        
        .login-container h2 {
            color: #22272e;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.5em;
            text-align: center;
        }
        
        .login-container label {
            display: block;
            margin-bottom: 15px;
            color: #414955;
            font-weight: 500;
        }
        
        .login-container input {
            width: 100%;
            padding: 10px 15px;
            margin-top: 5px;
            border: 1px solid #caccce;
            border-radius: 6px;
            font-size: 1em;
            transition: border-color 0.2s;
        }
        
        .login-container input:focus {
            border-color: #1da1f2;
            outline: none;
        }
        
        .login-container button {
            width: 100%;
            padding: 12px;
            background: #22272e;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1em;
            font-weight: 550;
            cursor: pointer;
            transition: background 0.2s;
            margin-bottom: 20px;
        }
        
        .login-container button:hover {
            background: #e6ba39;
            color: black;
        }
        
        .social-login {
            margin-top: 20px;
            border-top: 1px solid #caccce;
            padding-top: 12px;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            margin-bottom: 10px;
            background: #f0f1f4;
            color: #22272e;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: background 0.2s;
        }
        
        .social-btn:hover {
            background: #d6d8dd;
        }
        
        .social-btn img {
            width: 21px;
            height: 21px;
        }
        
        .show-register-btn {
            width: 100%;
            padding: 12px;
            background: #1da1f2;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-bottom: 20px;
        }
        
        .show-register-btn:hover {
            background: #0d8ecf;
        }
        
        #register-section {
            display: none;
            margin-bottom: 30px;
        }
        
        #register-section.active {
            display: block;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-toggle {
            text-align: center;
            margin-top: 1px;
            color: #6b7480;
        }
        
        .form-toggle a {
            color: #f2a91d;
            text-decoration: none;
            font-weight: 600;
        }
        
        .form-toggle a:hover {
            text-decoration: underline;
        }

        .password-container {
            position: relative;
        }

        .toggle-password { 
            position: absolute; 
            right: 10px; 
            top: 35px; 
            cursor: pointer;
            color: #666;
            font-size: 0.8em;
        }
    
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
            color: #6b7480;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #caccce;
        }
        
        .divider span {
            padding: 0 10px;
            font-size: 0.9em;
        }
    
    