.display-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .auth-form-wrapper { 
            width: 100%; 
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 20px; 
        }
        .form-group { 
            margin-bottom: 20px; 
            text-align: center; 
        }
        .form-group label { 
            display: block; 
            margin-bottom: 8px; 
            color: var(--text-soft); 
            font-weight: 600; 
        }
        .form-group input {
            width: 360px; 
            height: 51px; 
            padding: 0 16px; 
            background: var(--panel-2); /* Az index.html szürkéje */
            border: 1px solid var(--border); 
            border-radius: 12px; 
            color: var(--white);
            font-family: inherit; 
            font-size: 16px; 
            transition: all 0.3s ease;
            text-align: center;
            box-sizing: border-box;
        }
        .form-group input:focus { 
            border-color: var(--cyan); 
            background: rgba(255, 255, 255, 0.15); 
            outline: none; 
        }
        .status-msg { margin-top: 15px; font-weight: 600; text-align: center; min-height: 24px; }
        
        /* Mobilos igazítás, ha a 360px túl széles lenne */
        @media (max-width: 400px) {
            .form-group input { width: 90vw; }
        }